Are you aware of the use of CSS list-style-image properties, and here we describe the List-style-image property using an image to replace the tag of a list item that specifies an image as an ordered or unordered list item flag.
CSS List-style-image Property List icon
Definition and usage
The List-style-image property uses an image to replace the tag of the list item.
Description
This property specifies an image that is marked as an ordered or unordered list item. The placement of an image relative to the contents of a list item is usually controlled using the List-style-position property.
Note: Always specify a "List-style-type" attribute in case the image is not available.
Instance
Set the image to the item tag in the list:
UL { list-style-image:url ("/i/arrow.gif"); List-style-type:square; }
Browser support
All browsers support the List-style-image property.
Note: The property value "Inherit" is not supported for any version of InternetExplorer (including IE8).
Possible values
Grammar:
List-style-image:none | URL (URL)
Parameters:
None: No image specified
URL: Specify a background image with an absolute or relative address
Description
Sets or retrieves an image that is marked as a list item of an object.
The List-style-type property will function if the List-style-image property is None or if the specified image is not available.
The corresponding script attribute is liststyleimage. Please refer to the other bibliography I have written.
Example:
ul.out {list-style-position:outside; List-style-image:url ("Images/ie.gif");}