HTML Dog
Skip to navigation

CSS Property: list-style-type

The style of the list marker bullet or numbering system within a list.

Applies to boxes set to display: list-item (of which li HTML elements are by default).

Possible Values

ValueDescription
discSolid circle.
circleHollow circle.
squareSolid square.
decimal1, 2, 3, 4, etc.
decimal-leading-zero01, 02, 03 … 10, 11, etc.
lower-romani, ii, iii, iv, etc.
upper-romanI, II, III, IV, etc.
lower-greekGreek characters.
lower-latina, b, c, d, etc.
upper-latinA, B, C, D, etc.
armenianArmenian numbering.
georgianGeorgian numbering.
lower-alphaEquivalent of lower-latin.
upper-alphaEquivalent of upper-latin.
noneNo list marker.
inherit
initial
unset

Example


li { list-style-type: lower-roman; }

Browser support