Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML을 사용하여 CSS3에서 얇은 글꼴을 더 매끄럽게 렌더링하는 방법은 무엇입니까?

<시간/>

가는 글꼴을 더 부드럽게 렌더링하려면 −

를 사용하세요.
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;

Google 크롬의 경우 −

를 사용합니다.
-webkit-font-smoothing:antialiased !important;

다음과 같이 성능을 향상시킬 수 있습니다. -

text-rendering: auto
text-rendering: optimizeSpeed
text-rendering: optimizeLegibility
text-rendering: geometricPrecision
text-rendering: inherit