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

CSS로 요소의 글꼴 스트레치 설정

<시간/>

요소의 font-stretch를 설정하려면 font-stretch 속성을 사용하십시오. 가능한 값은 일반, 더 넓음, 더 좁음, 극도로 압축, 추가 압축, 압축, 반 압축, 반 확장, 확장, 추가 확장, 극도로 확장일 수 있습니다.

<html>
   <head>
   </head>
   <body>
      <p style = "font-stretch:ultra-expanded;">
         If this doesn't appear to work, it is likely that your computer doesn't have a
         condensed or expanded version of the font being used.
      </p>
   </body>
</html>