Chrome on Android resizes font
Apparently once paragraph of text reaches a certain length, Google Chrome on Android decides to resize the text and make it larger (causing all kinds of fun). Now I have a website where about half of the p
-tags follow the size I've set and the other half change as they please - apparently depending on the length of the paragraph.
How on earth do I fix this?
Add max-height: 999999px;
to the element you want to prevent font boosting on, or its parent.
Include the following <meta>
tag in the document <head>
:
<meta name="viewport" content="width=device-width, initial-scale=1">
This will correctly establish the view frame, and thus eliminate the need for "FontBoosting".