Chrome on Android resizes font
android, css, font-size, google-chrome, html
Solution
Add `max-height: 999999px;` to the element you want to prevent font boosting on, or its parent.
Problem
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?