1

»我的文档在每个列表元素的开头出现了杂散。当我在浏览器中查看源代码时,该字符不在文档中——它只出现在屏幕上。

我怎样才能摆脱它?

我会list-style-postion以某种方式使用吗?

我已经尝试了所有我能想到的css:

list-style:none !important;
list-style-type:none !important;
list-style-image:none !important;
4

2 回答 2

1

它可能是由:before伪元素添加的。

寻找类似的东西

li:before {
    ...
}

并删除它

于 2012-10-03T16:56:21.723 回答
0

这应该重置/清除列表

ul, ol, li, dl, dt, dd
{
padding: 0;
margin: 0;
list-style-type: none;
list-style-position: inside;
list-style-image: none;
}

查看是否使用任何伪选择器来添加它们。

于 2012-10-03T16:58:08.943 回答