Harsh Srivastava Total Post:2 Points:30 Posted by Harsh Srivastava April-27-2018 23:08 PM CSS-CSS3 CSS CSS-CSS3 1 Reply(s) 753 View(s) Ratings: Rate this: how to add counter using css styles. can anyone help me..
Jivika Rai Post:5 Points:35 Re: CSS Counters Posted on 9 months ago here is an example..of css counter <style> body { counter-reset: section; } h2::before { counter-increment: section; content: "Section " counter(section) ": "; } </style> </head> <body> <h1>counter1</h1> <h2>counter2</h2> <h2>counter3</h2> hope this resolve your problem..
Post:5
Points:35Re: CSS Counters
here is an example..of css counter
hope this resolve your problem..