How do I use an Image for a list item?

You can use the list-style-image property instead of list-style-type for your bullets.This property accepts a URL, which incorporates the path to your image file as a value.

ul{ list-style-image: url(bullet.gif) }

Explore posts in the same categories: CSS, CSS2, Design, Tutorials, Web 2.0

Comment: