CSS list-style-image property
Usage
Replaces the standard list marker with an image. Note that you should also specify a generic marker type incase the image is unavailable.
Values
- url([URL]) - specifies the URL of the marker image
- none - default
Example
Code:
ul {
list-style-image: url(arrow.gif);
}