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>