CSS - counter-reset


Description:

The counter-reset property sets a named counter to a specific value.

Possible Values:

  • name: The name of a counter. The name can be any string value.
  • integer: Defines an increment for the named counter each time the element appears in the document. This increment can be zero, or even negative. If no integer is provided, the counter is incremented by one.
  • none: No increment is performed.

Applies to:

All the HTML elements.

DOM Syntax:

object.style.counterReset="section 1";

Example:

This example shows a way to number chapters and sections with "Chapter 1", "1.1", "1.2", etc.

h1:before {
    content: "Chapter " counter(chapter) ". ";
    counter-increment: chapter;  /* Add 1 to chapter */
    counter-reset: section;      /* Set section to 0 */
}
h2:before {
    content: counter(chapter) "." counter(section) " ";
    counter-increment: section;
}
     

The 'counter-reset' property follows the cascading rules. Thus, due to cascading, the following style sheet will only reset 'imagenum':

h1 { counter-reset: section -1 } h1 { counter-reset: imagenum 99 }

To reset both counters, they have to be specified together:

h1 { counter-reset: section -1 imagenum 99 }
     

 





Spacer Bottom Left Corner ImageBottom Right Corner Image
Valid XHTML 1.0 Strict  Valid CSS! Check the accessibility of this site according to U.S. Section 508