list-style-image
The list-style-image CSS property sets the image that will be used as the list item marker. It is often more convenient to use the shorthand list-style.
Example
<!DOCTYPE html> <html> <head> <style> ul { list-style-image: url(list.png) } </style> </head> <body> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> </body> </html>