如何在CSS3中使用HTML更平滑的呈现细字体?
若要更平滑的呈现细字体,请使用 -
text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important;
对于Google Chrome,请使用 -
-webkit-font-smoothing:antialiased !important;
你可以这样来提升性能 -
text-rendering: auto text-rendering: optimizeSpeed text-rendering: optimizeLegibility text-rendering: geometricPrecision text-rendering: inherit
广告