CSS を使用してカウンターを作成またはリセットするには、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 中国語 Web サイトの他の関連記事を参照してください。