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

CSS :의사 요소 이전

<시간/>

이 요소를 사용하여 요소 앞에 일부 콘텐츠를 삽입합니다. 다음 예는 :before 요소를 사용하여 요소에 일부 콘텐츠를 추가하는 방법을 보여줍니다.

예시

<html>
   <head>
      <style>
         p:before
         {
            content: url(/images/bullet.gif)
         }
      </style>
   </head>
   <body>
      <p> This line will be preceded by a bullet.</p>
      <p> This line will be preceded by a bullet.</p>
      <p> This line will be preceded by a bullet.</p>
   </body>
</html>