Prevent font boost on Google Chrome for Mobile
Prevent weird font size changes on Chrome for Mobile when viewing websites in Desktop Mode.
Note that text-size-adjust
is experimental and is not supported by all browser.
body {
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
text-size-adjust: none;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">