Menu
Advanced Features

CSS Counters

Automatic numbering with CSS variables.

1Auto Numbering

Increment values automatically.

Example Code
body {
  counter-reset: section;
}
h2::before {
  counter-increment: section;
  content: "Section " counter(section) ": ";
}

Finished reading?

Mark this topic as complete to track progress.