:before 요소를 사용하여 요소 앞에 내용을 삽입하십시오.
예시
CSS −
를 사용하여 요소 앞에 일부 콘텐츠를 삽입하기 위해 다음 코드를 실행할 수 있습니다.
<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>