CSSlist-style-image Property
Example
Specify an image as the list-item marker in a list:
ul {
list-style-image: url('sqpurple.gif');
}
Try it Yourself »list-style-image: url('sqpurple.gif');
}
Definition and Usage
Thelist-style-image property replaces the list-item marker with an image.
Note:Always specify thelist-style-type property in addition. This property is used if the image for some reason is unavailable.
| Default value: | none |
|---|---|
| Inherited: | yes |
| Animatable: | no.Read aboutanimatable |
| Version: | CSS1 |
| JavaScript syntax: | object.style.listStyleImage="url('smiley.gif')"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| list-style-image | 1.0 | 4.0 | 1.0 | 1.0 | 7.0 |
CSS Syntax
list-style-image: none|url()|initial|inherit;
Property Values
| Value | Description | Demo |
|---|---|---|
| none | No image will be displayed. Instead, the list-style-type property will define what type of list marker will be rendered. This is default | Demo ❯ |
| url() | The URL to the image to be used as a list-item marker | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
Related Pages
CSS tutorial:CSS List
CSS reference:list-style property
HTML DOM reference:listStyleImage property

