我正在尝试使用 CSS 属性控制 Google Chrome 的(可怕的)字体抗锯齿-webkit-font-smoothing
,但它对文本完全没有影响。
<div style="font-size: 42px">
<p style="-webkit-font-smoothing: subpixel-antialiased">This is a font test.</p>
<p style="-webkit-font-smoothing: antialiased">This is a font test.</p>
<p style="-webkit-font-smoothing: none">This is a font test.</p>
</div>
我在 Photoshop 中比较了像素,这三个像素完全相同。Chrome 不再支持此属性了吗?