CSS list-style Property Reference
The CSS list-style property is a standard property in CSS Lists and Counters. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
list-style overview
The CSS list-style property is a standard property in CSS Lists and Counters. Review its formal syntax, computed behavior, and practical declarations.
The computed value normally inherits from the parent element when no declaration wins the cascade.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | <'list-style-type'> || <'list-style-position'> || <'list-style-image'> |
| Initial value | list-style-type, list-style-position, list-style-image |
| Applies to | listItems |
| Inherited | Yes |
| Percentages | no |
| Computed value | list-style-image, list-style-position, list-style-type |
| Animation type | list-style-image, list-style-position, list-style-type |
| Media | visual |
| Specification group | CSS Lists and Counters |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set list-style. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
list-style: initial;
}
.inherit-example {
list-style: inherit;
}
@supports (list-style: initial) {
.supported {
list-style: initial;
}
}