首頁  >  文章  >  web前端  >  CSS 計數器重設屬性

CSS 計數器重設屬性

WBOY
WBOY轉載
2023-09-04 22:05:091381瀏覽

CSS 计数器重置属性

要使用 CSS 建立或重設計數器,請使用 counter-reset 屬性。

您可以嘗試執行以下程式碼來實作 counter-reset屬性

#範例

現場示範

<!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>

以上是CSS 計數器重設屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除