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

CSS 글꼴 크기 조정 속성

<시간/>

글꼴 크기 조정 사용 t 속성은 글꼴 대체가 발생할 때 가독성을 유지합니다. 다음 코드를 실행하여 font-size-adjust 속성을 구현할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            font-size-adjust: 0.90;
         }
      </style>
   </head>
   <body>
      <h2>Heading Two</h2>
      <h2>With font-size-adjust property:</h2>
      <div class = "demo">
         This is demo text.
      </div>
      <h2>Without font-size-adjust property:</h2>
      <div>This is demo text.</div>
   </body>
</html>