Home > Article > Web Front-end > CSS counter reset property
To create or reset a counter using CSS, use the counter-reset property.
You can try running the following code to implement counter-resetAttribute
Live demonstration
<!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>
The above is the detailed content of CSS counter reset property. For more information, please follow other related articles on the PHP Chinese website!