Just found a workaround for this. Set the maximum height in the parent text element much more than ever appeared. For instance,
<p class="intro"> This is some text that is appearing blown up and ridiculous on Chrome Mobile. </p> p.intro { max-height: 5000em; }
You can set the maximum height for any parent element. He should not be the first parent. For instance,
<footer class="primary"> <p class="intro"> This is some text that is appearing blown up and ridiculous on Chrome Mobile. </p> </footer> footer.primary { max-height: 5000em; }
bradt source share