It is used to change the marker used for list items by giving path to a image file to be used as list item marker. Its values are discussed as
| Value | Description |
| url | The path to the image to be used as a list-item marker |
| none | No image will be displayed. Instead, the list-style-type property will define what type of list marker will be rendered. |
It is used as
ul
{ list-style-image:url(‘redcircle.jpg’); }
The list-style-image has the value of ‘none’ as the default value. The property accepts the URL of the image.
