css – Font-size <12px在Google Chrome中没有效果

前端之家收集整理的这篇文章主要介绍了css – Font-size <12px在Google Chrome中没有效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
css font-size< 12px的元素在Google Chrome中没有效果 - 仍为font-size 12像素。 我该怎么办? 我的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;
}
原文链接:https://www.f2er.com/css/220837.html

猜你在找的CSS相关文章