css列表样式(ul和ol)

简写顺序:list-style-type~list-style-position~list-style-image

eg:ul{list-style:square url("img.png")}

注意:如果上述值丢失一个,其余仍在指定的顺序,就没关系。

按简写顺序依次介绍每个属性:

一、 list-style-type:disc(默认for ul,实心圆);decimal(默认for ol ,数字);none(无标记);circle(空心圆);square(实心方块);decimal-leading-zero(01,02等以0开头的数字);lower-roman(小写罗马数字);upper-roman(大写罗马数字);lower-alpha(小写英文字母);upper-alpha(大写英文字母);

二、list-style-position:outside(默认);inside;inherit;

三、list-style-image:none(默认);url(“img.png”);inherit;

猜你喜欢

转载自blog.csdn.net/Julie115/article/details/81414475