列表中的项目符号如何删除它

时间:2012-10-12 19:12:13

标签: css list

您好我想知道如何使用css覆盖它,我尝试了内容:“。”在我班上但没有工作。

.postcontent ul > li::before, .post ul > li::before, .textblock ul > li::before {
content: url('../images/postbullets.png');

感谢您的帮助

3 个答案:

答案 0 :(得分:2)

这会删除列表中的项目符号并将其替换为您的图像:

.postcontent ul > li {
    list-style-type: none;
    list-style-image: url('../images/postbullets.png');
}

答案 1 :(得分:0)

试试这个:

li {list-style-type: none;} 

答案 2 :(得分:0)

如何删除列表中的项目符号?我有一种感觉,我误解了这个问题......

CSS

list-style-type: none;

http://www.w3schools.com/cssref/pr_list-style-type.asp