| ZVON > References > CSS1 Reference |
| Intro / Search / ZVON |
| Property: | list-style-type |
| Values: | disc, circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none |
| Initial: | disc |
| Inherited: | yes |
This property 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.
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. */
|
|
|