CSS Property: list-style-image
An image to be used as a list item marker.
Applies to boxes set to display: list-item (of which li HTML elements are by default).
Possible Values
| Value | Description | Example |
|---|---|---|
| [URL] | The location of an image to be used as the list item marker. | url("bullet.png") |
none | No image. Default. | |
inherit | ||
initial | ||
unset | ||
Example
li { list-style-image: url("bullet.png"); }
