项目符号有多种,罗列如下:
disc(实心圆点)、
circle(空心圆圈)、
square(实心方块)、
decimal(阿拉伯数字)、
lower-roman(小写罗马数字)、
upper-roman(大写罗马数字)、
lower-alpha(小写英文字母)、
upper-alpha(大写英文字母)、
none(无)。
比如设定一个列表(ul或ol)的项目符号为方块,如:
Example Source Code
[www.21shipin.com]li{
list-style: square;
}
此外list-style还有一些值,比如可以采用一些小图片作为项目符号,在list-style下直接写url(“图片地址”)。注重假如一个项目列表的左外补丁(margin-left)为零,list-style-position: outside(默认是outside)的项目符号不会显示。