一直在努力,我无法弄清楚如何摆脱"。"在列表元素之前,我可以很容易地改变它们的颜色,但是在列中显示的列表中将它们转换似乎是不可能的。
这是有问题的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作为类的链接都会变为粉红色,并带有。
答案 0 :(得分:6)
line-style-type
应为list-style-type
。
答案 1 :(得分:2)
更改
line-style-type: none
到
list-style-type: none;
答案 2 :(得分:0)
只需添加:
list-style-type: none;
到ul
元素。