CSS Property - List Style Type

Value: disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none
Initial: disc
Applies to: elements with "display" value "list-item"
Inherited: yes
Percentage values: N/A

The CSS property "list-style-type" is used to determine the appearance of the list-item marker if "list-style-image" is "none" or if the image pointed to by the URL cannot be displayed.

Example:

ol {list-style-type: decimal;} = 1 2 3 4 5 etc.

ol {list-style-type: lower-alpha;} = a b c d e etc.

ol {list-style-type: lower-roman;} = i ii iii iv v etc..