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