Since September 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The suffix descriptor of the @counter-style rule specifies content that will be added to the end of the marker representation.
/* <symbol> value: string, image, or identifier */
suffix: "";
suffix: ") ";
suffix: url("bullet.png");
The suffix descriptor takes as its value a single <symbol>:
<symbol>Specifies a <symbol> that is appended to the marker representation. It may be a <string>, <image>, or <custom-ident>.
| Related at-rule | @counter-style |
|---|---|
| Initial value | ". " (full stop followed by a space) |
| Computed value | as specified |
suffix =
<symbol>
<symbol> =
<string> |
<image> |
<custom-ident>
<image> =
<url> |
<gradient>
<url> =
<url()> |
<src()>
<url()> =
url( <string> <url-modifier>* ) |
<url-token>
<src()> =
src( <string> <url-modifier>* )
<ul class="choices"> <li>One</li> <li>Two</li> <li>Three</li> <li>None of the above</li> </ul>
@counter-style options {
system: fixed;
symbols: A B C D;
suffix: ") ";
}
.choices {
list-style: options;
}
| Specification |
|---|
| CSS Counter Styles Level 3> # counter-style-suffix> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
suffix |
91 | 91 | 33 | 77 | 17 | 91 | 33 | 64 | 17 | 16.0 | 91 | 17 |
@counter-style descriptors: system, symbols, additive-symbols, negative, prefix, range, pad, speak-as, and fallback
list-style, list-style-image, list-style-position
symbols(): the functional notation for creating anonymous counter styles
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style/suffix