CSS के साथ काउंटर बनाने या रीसेट करने के लिए, काउंटर-रीसेट प्रॉपर्टी का उपयोग करें।
आप काउंटर-रीसेट को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं संपत्ति
उदाहरण
<!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>