如何从列表中删除点
一直在工作,我不知道如何摆脱“。” 在列表元素之前,我可以很容易地改变它们的颜色,但是在一列中显示的列表中将它们变成不可能。
这是问题的CSS:
.vert ul {
line-style-type: none;
content: " ";
text-align: center;
color: pink;
}
.vert ul:befor {
content: " ";
color: blue;
}
.vert li:before {
content: " ";
color: orange;
}
任何使用vert作为类的链接最终都会变成粉红色,并带有a。
line-style-type
应该是list-style-type
。
更改
line-style-type: none
至
list-style-type: none;
只需添加:
list-style-type: none;
ul
元素。
上一篇: How to remove the dot from lists
下一篇: How to change the font color & size in bootstrap 3 navbar