-1

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

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

谢谢你的帮助

4

3 回答 3

2

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

.postcontent ul > li {
    list-style-type: none;
    list-style-image: url('../images/postbullets.png');
}
于 2012-10-12T19:15:44.380 回答
0

尝试这个:

li {list-style-type: none;} 
于 2012-10-12T19:15:35.460 回答
0

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

CSS

list-style-type: none;

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

于 2012-10-12T19:15:36.803 回答