Chrome on Android resizes font Chrome on Android resizes font google-chrome google-chrome

Chrome on Android resizes font


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".


There is now a CSS property you can set to control this:

-webkit-text-size-adjust: none;-moz-text-size-adjust: none;-ms-text-size-adjust: none;

See https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust