Properties
CSS
list-style-image
The list-style-image property sets the image that will be used as the list item marker.
list-style-image: <uri> | none | inherit
| Initial: | none |
| Applies To: | elements with display: list-item |
| Inherited: | yes |
| Percentages: | NA |
| Media: | visual |
Values
list-style-image: value;
| Value: | Description: |
| inherit | Takes the same computed value as the property for the element's parent |
| none | No marker |
| uri | Uniform Resource Identifier (URL, URN, ...) inside url() parenthesis |
DOM
[window.]document.getElementById("element-id").style.listStyleImage = "list-style-image";
