CSS样式——列表

1.list-style-type
disc 小黑点
circle 空心圆
square 方形
decimal 数值 小于10的不补0
decimal-leading-zero 数值 小于10的补0
lower-roman 小写罗马
upper-roman 大写罗马
lower-alpha 英文字母 a,b,c…
upper-alpha
lower-greek 数学字符
lower-latin 英文字母 a,b,c…
upper-latin

2.list-style-position 设置标志项的位置
outside 在主框外,默认
inside 在主框内

3.list-style-image 设置项目图片

        list-style-image: url('./images/zhankai.png');
    速写属性
        如果type,images都设置了,那么采用images的,如果images无效,那么使用type的值,如果都无效,是1,2,3,4 
        list-style: square url('./images/zhankai.png')outside;
    没有项目编号
        list-style: none;
发布了39 篇原创文章 · 获赞 0 · 访问量 171

猜你喜欢

转载自blog.csdn.net/yaningyin/article/details/105035783