Difference between revisions of "CSS GUIDE LIST-STYLE-IMAGE"
(→Summary) |
|||
Line 1: | Line 1: | ||
== Summary == | == Summary == | ||
− | '''list-style-image''' sets the image that will be used as the list item marker. | + | The '''list-style-image''' sets the image that will be used as the list item marker. |
* Initial value: none | * Initial value: none | ||
Line 8: | Line 8: | ||
* Percentages: N/A | * Percentages: N/A | ||
* Media: visual | * Media: visual | ||
− | * Computed value: absolute URI or none | + | * Computed value: absolute URI or none |
== Syntax == | == Syntax == |
Revision as of 18:25, 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"); }