5
Autoprefixer
webpack loader爲所有css添加autoprefix但是它不會爲font-smoothing : antialiased
添加autoprefix。爲什麼Autoprefixer不會爲字體平滑添加前綴
爲什麼它不爲此添加autoprefix?
Autoprefixer
webpack loader爲所有css添加autoprefix但是它不會爲font-smoothing : antialiased
添加autoprefix。爲什麼Autoprefixer不會爲字體平滑添加前綴
爲什麼它不爲此添加autoprefix?
我猜是因爲它是一個供應商(-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;
}