如何在 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
广告