Text gets bigger inside Card on Android with Chrome
Prerequisites
-
I have searched for duplicate or closed issues -
I have validated any HTML to avoid common problems -
I have read the contributing guidelines
Describe the issue
I'm using a Card to put inside some simple text.
If I add more <p></p>
in the card body the text of the card title and card body gets bigger.
Tested the issue on Android with Chrome stable (v111.0.5563.57).
Card with 1 paragraph, no issue, expected result:
Card with 3 paragraphs, you can see how the text is slightly bigger in this case:
Reduced test cases
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous" />
</head>
<body>
<div class="container mt-3">
<div class="card">
<div class="card-header">
Card Title
</div>
<div class="card-body">
<p>With supporting text below as a natural lead-in to additional content.</p>
<p>With supporting text below as a natural lead-in to additional content.</p>
<p>With supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>
What operating system(s) are you seeing the problem on?
Android
What browser(s) are you seeing the problem on?
Chrome
What version of Bootstrap are you using?
5.3.0-alpha1