List Style Image
| Syntax: |
list-style-image: <value>
|
| Possible Values: |
<url> | none
|
| Initial Value: |
none
|
| Applies to: |
Elements with display value list-item
|
| Inherited: |
Yes
|
The list-style-image property specifies the image that will be used as list-item marker when image loading is turned on, replacing the marker specified in the list-style-type property.
Examples:
UL.check { list-style-image: url(/LI-markers/checkmark.gif) }
UL LI.x { list-style-image: url(x.png) }
|