HTML CSS examples for CSS Property:counter-increment
Number chapters and sections with "Chapter 1", "1.1", "1.2", etc.
<html> <head> <style>l; body {<!-- ww w.j ava 2 s . c o m--> counter-reset: section; } h1 { counter-reset: subsection; } h1:before { counter-increment: section; content: "Section " counter(section) ". "; } h2:before { counter-increment: subsection; content: counter(section) "." counter(subsection) " "; } </style> </head> <body> <h1> book 2s .com</h1> <h2> book 2s .com</h2> <h2> book 2s .com</h2> <h2> book 2s .com</h2> <h2> book 2s .com</h2> </body> </html>