list-style-image: url(***);
The list-style-image property sets an image as the list item marker.
This property can apply to the UL, OL, and LI element.
ul {
list-style-image: url(image/mark.gif);
}
Property |
Value |
Explanation |
list-style-image |
url(URL) |
the URL of the image to display |
The default is "none".
Example