如何从列表中删除点

时间:2015-04-13 15:21:26

标签: html css

一直在努力,我无法弄清楚如何摆脱"。"在列表元素之前,我可以很容易地改变它们的颜色,但是在列中显示的列表中将它们转换似乎是不可能的。

这是有问题的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作为类的链接都会变为粉红色,并带有。

3 个答案:

答案 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元素。