您好我想知道如何使用css覆盖它,我尝试了内容:“。”在我班上但没有工作。
.postcontent ul > li::before, .post ul > li::before, .textblock ul > li::before {
content: url('../images/postbullets.png');
感谢您的帮助
答案 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;