-2
li.widget ul li {
    margin-bottom: 0.714em;
    background-color: #000000;
}

在 Rootmyandroid.org

我想将右侧栏子小部件链接的背景颜色设置为黑色,所以我给了#000000颜色。而且我已经在悬停时将东西(我想为其添加黑色背景)设置为绿色。

当我使用 firebug 检查 CSS 时,它不显示background-color: #000000;

可能是什么问题?

4

3 回答 3

1

在您的 custom.css 中有一行:

//side bar edit start color wala

这不是一个有效的评论,所以规则

li.widget ul li {
    margin-bottom: 0.714em;
    background-color: #000000;
}

被忽略

样式表上的注释总是打开/*和关闭*/

/*side bar edit start color wala*/
于 2013-06-05T14:24:11.313 回答
0

在您的 layout.css 中的第 227 行设置背景颜色

li.widget ul li {
    background-color: black;
    margin-bottom: 0.714em;
}
于 2013-06-05T14:28:37.597 回答
-1

如果您尝试更改 LINKS 的颜色,则必须添加“a”,如下所示:

li.widget ul li a { ... }

or 

li.widget a { ... }
于 2013-06-05T14:20:00.177 回答