字体大小<12px在Google Chrome中不起作用
css font-size <12px的元素在Google Chrome中不起作用-保持字体大小12px。
我该怎么办?
我的Google Chrome浏览器使用默认设置。我的版本是4.0.249.89。我正在使用Windows XP。
您可以将以下代码粘贴到您的Google Chrome浏览器中进行测试:
<html><body>
<p style="font-size:6px;">test 6px</p>
<p style="font-size:7px;">test 7px</p>
<p style="font-size:8px;">test 8px</p>
<p style="font-size:9px;">test 9px</p>
<p style="font-size:10px;">test 10px</p>
<p style="font-size:11px;">test 11px</p>
<p style="font-size:12px;">test 12px</p>
<p style="font-size:13px;">test 13px</p>
<p style="font-size:14px;">test 14px</p>
<p style="font-size:15px;">test 15px</p>
<p style="font-size:16px;">test 16px</p>
</body>
</html>
来自不同浏览器的结果:
回答:
按照以下样式禁用自动调整。
* { -webkit-text-size-adjust: none;
}
以上是 字体大小<12px在Google Chrome中不起作用 的全部内容, 来源链接: utcz.com/qa/407210.html