List-style-image is a property / command to change the bullet of all elements with a display value of list-item. This includes not only li elements but any element with the display style set to list-item, specifically the li tag.
Example 1:
list-style-image: url(images/image1.gif);
Example 2:
#test { list-style-image: url(images/bullet.gif); }
http://www.codertools.com/css_help_guide/css_list-style-image.aspx
-Ginelle D
This property indicates a graphic to be used for the list markers in the list structure. This should override the default appearance of list-markers in the current HTML list structure. If a 'list-style-image' is given a value of 'none' or the URL can not be loaded, the 'list-style-type' will be used in its place. The 'list-style-type' should always be specified in the event the URL pointed to in 'list-style-image' can not be loaded.
http://www.eskimo.net/~bloo/indexdot/css/properties/list/lsimage.htm
~Greg B.
Comments (0)
You don't have permission to comment on this page.