HTML Dog
Skip to navigation

CSS Property: list-style-image

An image to be used as a list item marker.

Applies to boxes set to display: list-item (of which li HTML elements are by default).

Possible Values

ValueDescriptionExample
[URL]The location of an image to be used as the list item marker.url("bullet.png")
noneNo image. Default.
inherit
initial
unset

Example


li { list-style-image: url("bullet.png"); }

Browser support