CSS property: list-style-type
The list-style-type property specifies the list item marker when no list-style-image value is set, or it is set to none.
Property values
Parameter |
Description |
|---|---|
circle disc square |
These values specify the shape of the list item marker. |
decimal |
This value specifies that the list item markers are decimal numbers, starting at 1 (1, 2, 3, 4, 5...). |
decimal-leading-zero |
This value specifies that the list item markers are decimal numbers padded with a leading zero (01, 02, 03, 04, 05...). |
lower-alpha lower-latin |
These values specify that the list itme markers are lower-case alphabetic letters (a, b, c, d, e...). |
lower-greek |
This value specifies that the list item markers are lower-case greek symbols. |
lower-roman |
This value specifies that the list item markers are lower-case roman numerals (i, ii, iii, iv, v...). |
upper-alpha upper-latin |
These values specify that the list itme markers are upper-case alphabetic letters (a, b, c, d, e...). |
upper-roman |
This value specifies that the list item markers are upper-case roman numerals (I, II, III, IV, V...). |
inherit |
This value specifies that the element inherits the list-style-type property value from the containing element. |