要使用 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 计数器重置属性的详细内容。