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

CSS :첫 글자 의사 요소

<시간/>

이 요소를 사용하여 선택기에서 텍스트의 첫 글자에 특별한 스타일을 추가합니다. 다음 예는 문서에 있는 요소의 첫 글자에 특수 효과를 추가하기 위해 :first-letter 요소를 사용하는 방법을 보여줍니다.

예시

<html>
   <head>
      <style>
         p:first-letter {
            font-size: 5em;
         }
         p.normal:first-letter {
            font-size: 10px;
         }
      </style>
   </head>
   <body>
      <p class="normal"> First character of this paragraph will be normal and will
         have font size 10 px;
      </p>
      <p>The first character of this paragraph will be 5em big as defined
         in the CSS rule above. Rest of the characters in this paragraph
         will remain normal. This example shows how to use :first-letter pseduo
         element to give effect to the first characters of any HTML element.
       </p>
   </body>
</html>