
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS counter-increment property
To increment a counter value with CSS, use the counter-increment property.
You can try to run the following code to implement the counter-implement property −
Example
<!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>
- Related Questions & Answers
- CSS counter-reset property
- SELECT increment counter in MySQL?
- Change the Auto Increment counter in MySQL?
- Amortized analysis for increment in counter in C++
- Counter Size and Counter Overflow
- Creating Animated Counter using HTML, CSS, and JavaScript
- How to create a "section counter" with CSS?
- CSS outline property
- CSS height property
- CSS width property
- CSS padding property
- CSS pitch property
- Orphans CSS Property
- CSS azimuth Property
- CSS stress property
Advertisements