您好,我想知道如何使用 css 覆盖它,我尝试了内容:“。” 在我的课上,但不工作。
.postcontent ul > li::before, .post ul > li::before, .textblock ul > li::before {
content: url('../images/postbullets.png');
谢谢你的帮助
这将从您的列表中删除项目符号并将其替换为您的图像:
.postcontent ul > li {
list-style-type: none;
list-style-image: url('../images/postbullets.png');
}
尝试这个:
li {list-style-type: none;}
如何删除列表中的项目符号?我有一种我误读了这个问题的感觉......
CSS
list-style-type: none;