Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

คุณสมบัติการเพิ่มเคาน์เตอร์ CSS


หากต้องการเพิ่มค่าตัวนับด้วย CSS ให้ใช้ ตัวนับ ไม่ ทรัพย์สิน

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน counter-implement ทรัพย์สิน −

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
            counter-reset: section;
         }
         h2::before {
            counter-increment: section;
            content: "Fruit " counter(section) " - ";
         }
      </style>
   </head>
   <body>
      <h1>Fruits</h1>
      <h2>Mango</h2>
      <h2>Kiwi</h2>
   </body>
</html>