The list-style property is a shorthand property for setting all list-style properties.
This property can apply to the UL, OL, and LI element.
ul {
list-style: square inside url(image/mark.gif);
}
Property |
Value |
Explanation |
list-style |
each value |
sets type, position, and image |
list-style: square inside url(image/mark.gif);
The unnecessary values can be omitted.
list-style: square inside;
Example