The list-style-image property sets an image as the marker of a list item. If the value is a valid image, it is used as the marker; otherwise the element has no marker image.ul {
list-style-image: url("bullet.png");
}ul.gradient-bullets {
list-style-image: linear-gradient(45deg, hotpink, gold);
}noneNo marker image (default value). The marker is determined by list-style-type.url()Loads an external image by URI.linear-gradient()Linear gradient as the marker image.radial-gradient()Radial gradient as the marker image.conic-gradient()Conic gradient as the marker image.image-set()Selects the best-resolution image from a set.CSS Lists and Counters Module Level 3Editor's Draft<image>W3CMDN