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

CSS로 글꼴을 설정하는 약식 속성


글꼴 속성은 글꼴 패밀리, 크기, 스타일 등과 같은 다른 글꼴 속성의 수를 지정하기 위해 약어로 사용됩니다.

예시

다음 코드를 실행하여 글꼴 속성을 사용하는 방법을 배울 수 있습니다.

<html>
   <head>
   </head>
   <body>
      <p style = "font:italic small-caps bold 13px georgia;">
         Applying all the properties on the text at once.
      </p>
   </body>
</html>