Difference between revisions of "CSS GUIDE LIST-STYLE-IMAGE"
(→Summary) |
(→See Also) |
||
Line 43: | Line 43: | ||
== See Also == | == See Also == | ||
− | [[CSS_GUIDE_LIST-STYLE|list-style]], [[ | + | [[CSS_GUIDE_LIST-STYLE|list-style]], [[CSS_GUIDE_LIST_STYLE_TYPE|list-style-type]], [[CSS_GUIDE_LIST-STYLE-POSITION|list-style-position]] |
Latest revision as of 17:41, 13 December 2006
Contents
Summary
The list-style-image sets the image that will be used as the list item marker.
- Initial value: none
- Applies to: elements with 'display: list-item'
- Inherited: yes
- Percentages: N/A
- Media: visual
- Computed value: absolute URI or none
Syntax
list-style-image: <uri> | none | inherit
Legal Values
uri
- Location of image to use as the marker.
Mozilla Recommended Values
Usage Examples
ul { list-style-image: url("images/bullet.gif"); }