Notes: The table contains most common CSS properties/values. The browsers might ignore some of the properties!
Most off the properties have 'initial', 'unset' and 'inherit' values:
Property | Value | Description | Comments |
---|---|---|---|
list-style-type | disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-alpha | upper-alpha | lower-latin | upper-latin | none | Specifies the appearance of a list item element | This is a partial values list.
initial: disc |
list-style-image | [url("image file")] | none | Specifies an image to be used as the list item marker | initial: none |
list-style-position | inside | outside | Specifies the position of the marker box in the principal block box | initial: outside |
list-style | combination of 'list-style-type' || 'list-style-position' || 'list-style-image' | A shorthand property for setting all of the properties for a list in one declaration | A default of each of the properties of the shorthand:
|