- Item 1
- Item 2
- Item 3
Pr Gen Counter Increment
## Syntax
```css
counter-increment: none | [] | [] ...
```
## Values
- `none`: No counter is incremented.
- ``: The name of the counter to increment.
- ``: The value to increment by, default is 1.
## Example
```html
ol {
counter-reset: section;
list-style-type: none;
}
li::before {
counter-increment: section;
content: counters(section, ".") " ";
}
YouTip