The list styles in css are: 1. css ordered list [ol] and css unordered list [ul]; 2. css list label style [list-style-type]; 3. css label style Display mode [list-style-position].
The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.
The list style in css is:
1, css ordered list (ol) and css unordered list (ul)
2. css list label style list-style-type
Attribute value:
circle;Open circle
Disc;Solid circle
Decimal;Number
list.css ul>li{ list-style-type:circle; } ul>li>ol>li{ list-style-type:disc; }
3. The display method of css label style list-style-position
Attribute value: outside (outside the text, default)
inside (with the text)
list.css ul{ text-align:center; list-style-position:outside; } ul>li{ list-style-type:circle; } ul>li>ol>li{ list-style-type:disc; }
Related tutorial recommendations:CSS Video Tutorial
The above is the detailed content of What is the list style in css. For more information, please follow other related articles on the PHP Chinese website!