किसी भी तत्व से पहले कुछ सामग्री डालने के लिए :before element का प्रयोग करें।
उदाहरण
आप सीएसएस के साथ एक तत्व से पहले कुछ सामग्री डालने के लिए निम्नलिखित कोड चलाने का प्रयास कर सकते हैं -
<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>