針對圖標字體進行抗鋸齒渲染。html
font-smoothing是非標準的CSS定義。它被列入標準規範的草案中,後因爲某些緣由從web標準中被移除了。web
使用:chrome
body,html{
-webkit-font-smoothing: antialiased; /*chrome、safari*/ -moz-osx-font-smoothing: grayscale;/*firefox*/
}
(1)Webkit在本身的引擎中支持了這一效果。字體
-webkit-font-smoothingspa
它有三個屬性值:firefox
none ------ 對低像素的文本比較好code
subpixel-antialiased------默認值htm
antialiased ------抗鋸齒很好 blog
(2)Gecko也推出了本身的抗鋸齒效果的非標定義。it
-moz-osx-font-smoothing: inherit | grayscale;
這個屬性也是更清晰的做用。