files/en-us/web/css/reference/at-rules/@counter-style/suffix/index.md
The suffix descriptor of the {{cssxref("@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>
<symbol> that is appended to the marker representation. It may be a {{cssxref("<string>")}}, {{cssxref("image")}}, or {{cssxref("<custom-ident>")}}.{{cssinfo}}
{{csssyntax}}
<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;
}
{{ EmbedLiveSample('Setting_a_suffix_for_a_counter')}}
{{Specifications}}
{{Compat}}