CSS:list-style-image
From MDC
[edit] Summary
list-style-image sets the image that will be used as the list item marker.
- Initial value:
none - Applies to: elements with 'display: list-item'
- Inherited: yes
- Percentages: N/A
- Media:
visual - Computed value: absolute URI or
none
[edit] Syntax
list-style-image: <uri> | none | inherit
[edit] Values
-
uri - Location of image to use as the marker.
[edit] Examples
ul {
list-style-image: url("images/arrow.gif");
}