为什么Autoprefixer不为字体平滑添加前缀

Jag*_*sty 6 webpack autoprefixer

Autoprefixerwebpack loader为所有css添加autoprefix但是它不添加autoprefix font-smoothing : antialiased.

为什么它不为此添加autoprefix?

小智 5

我猜是因为它是供应商(-webkit-)特定的属性.因此,此属性没有其他前缀.你也可以在twitter上看到一些讨论:https://twitter.com/autoprefixer/status/444429500789841921?lang = nl

找到另一个网站,解释更多的用法:https: //davidwalsh.name/font-smoothing

TL; DR:

对于其他供应商,您甚至需要其他设置(抗锯齿和灰度)

.element {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
Run Code Online (Sandbox Code Playgroud)