刚刚发现了一种解决方法。在文本的父元素上设置最大高度,使其比以前显示的要大得多。例如,
<p > This is some text that is appearing blown up and ridiculous on Chrome Mobile.</p>p.intro { max-height: 5000em;}您可以在任何父元素上设置最大高度。它不必是第一个父母。例如,
<footer > <p > This is some text that is appearing blown up and ridiculous on Chrome Mobile. </p></footer>footer.primary { max-height: 5000em;}


