要使用 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中文網其他相關文章!