list-style-type
Definition
The list-style-type property specifies the style of bullets or numbers used as list item markers. The screen shot below shows several lists with different styles applied to each list.

Example
ol {list-style-type: lower-roman}
Characteristics
Possible values
disc- Disk-shaped glyph. Exact rendering may vary between Web browsers.
circle- Circle-shaped glyph. Exact rendering may vary between Web browsers.
square- Square-shaped glyph. Exact rendering may vary between Web browsers.
decimal- Decimal numbers, beginning at 1.
decimal-leading-zero- Decimal numbers padded by initial zeros (e.g., 01, 02, 03, ..., 98, 99).
lower-roman- Lowercase roman numerals (i, ii, iii, iv, v, etc.).
upper-roman- Uppercase roman numerals (I, II, III, IV, V, etc.).
lower-greek- Lowercase classical Greek alpha, beta, gamma, ... (α, β, γ, ...).
lower-latin- Lowercase ASCII letters (a, b, c, ... z).
upper-latin- Uppercase ASCII letters (A, B, C, ... Z).
armenian- Traditional Armenian numbering.
georgian- Traditional Georgian numbering (an, ban, gan, ..., he, tan, in, in-an, ...).
lower-alpha- Lowercase ASCII letters (a, b, c, ... z).
upper-alpha- Uppercase ASCII letters (A, B, C, ... Z).
none- No list item marker.
inherit- Use the same computed value as the parent element for this property.
Default value
disc
Applies to
Inherited
Yes
See also