本篇内容介绍了“css中怎么玩转有序/无序列表项list样式”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
在无序列表ul>li中,无线列表的标志是出现在各列表前面的圆点。在有序列表ol>li中,前面默认带有数字,如何修改列表前面的项目符号,只需要通过list-style调整就好,常见的符号有(/内容注释部分/)list-style-type:circle;/空心圆/list-style:none;/去除标志/list-style:square;/方块/list-style:upper-roman;/罗马数字/list-style:lower-alpha;/list-style-type:upper-alpha;大写字母/list-style-type: decimal;/序号数字展示/等!
1
2
3
4
5
6
7
8 ul.box1{
9 list-style-type:circle;/*空心圆*/
10 }
11 .box1 li{
12 list-style:none;/*去除标志*/
13 免费云主机、域名 background-image: url(“https://pic.cnblogs.com/avatar/1350951/20200208114706.png”);/*图文结合,列表前面添加图片*/
14 height: 50px;
15 background-repeat: no-repeat;
16 background-size: 20px;
17 /*设置背景图片大小。图片可以保有其原有的尺寸,或者拉伸到新的尺寸,或者在保持其原有比例的同时缩放到元素的可用空间的尺寸。*/
18 padding: 0px 25px 10px;/*调整内边距 上 左右 下*/
19 }
20 ul.box2{
21 list-style:square;/*方块*/
22 }
23 ul.box3{
24 list-style:upper-roman;/*罗马数字*/
25 }
26 ul.box4{
27 list-style:lower-alpha;/*list-style-type:upper-alpha;大写字母*/
28 }
29 ol.box5{
30 list-style: none;
31 list-style:upper-alpha;
32 color: indianred;
33 }
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75 “css中怎么玩转有序/无序列表项list样式”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注云技术网站,小编将为大家输出更多高质量的实用文章!
小编给大家分享一下css如何实现移动端点击态处理,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、伪类:active:active伪类常用于设定点击状态下或其他被激活状态下一个链接的…