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
Value | Description |
---|---|
disc | Solid circle. |
circle | Hollow circle. |
square | Solid square. |
decimal | 1, 2, 3, 4, etc. |
decimal-leading-zero | 01, 02, 03 … 10, 11, etc. |
lower-roman | i, ii, iii, iv, etc. |
upper-roman | I, II, III, IV, etc. |
lower-greek | Greek characters. |
lower-latin | a, b, c, d, etc. |
upper-latin | A, B, C, D, etc. |
armenian | Armenian numbering. |
georgian | Georgian numbering. |
lower-alpha | Equivalent of lower-latin . |
upper-alpha | Equivalent of upper-latin . |
none | No list marker. |
inherit | |
initial | |
unset |
Example
li { list-style-type: lower-roman; }