Skip to main content
CSS Tip

Customize your numbered list

Use @counter-style to customize your <ol> list with a simple code

A numbered list

@counter-style new-style {
system: extends decimal;
suffix: ") ";
prefix: "(";
}
ol {
list-style-type: new-style;
}

See the Pen Custom numbered list by Temani Afif (@t_afif) on CodePen.