Decimal Numbers marker for List Items

To set decimal numbers as marker for the list items in an ordered list using CSS, set list-style-type property for the list with the decimal value as shown in the following.

ol {
  list-style-type: decimal;
}

Examples

ADVERTISEMENT

1. Decimal numbers as marker for list items

In the following example, we take an ordered list and specify decimal as marker for the list items.

index.html

Conclusion

In this CSS Tutorial, we learned how to use CSS list-style-type property to set decimal numbers as marker for list items, with examples.