-1

我无法将菜单列表项的字体颜色设置为黑色。现在它们只是蓝色/紫色,悬停功能等工作正常..

CSS 代码:

#menu8 {


    background-color: 7c7b7b;
    width:225px;
    position:absolute;
    margin:0;
}   

 #menu8 li a {

    text-decoration: none;
    voice-family: "\"}\""; 
     voice-family: inherit;
 }

 #menu8 li a:link, #menu8 li a:visited {
    color: #777;
    display: block;
    background: url(images/menu8.gif);
    padding: 8px 0 0 20px;
}

#menu8 li a:hover {
    color: #257EB7;
    background: url(images/menu8.gif) 0 -32px;
    padding: 8px 0 0 25px;
}

 #menu8 li a:active {
    color: #fff;
    background: url(images/menu8.gif) 0 -64px;
    padding: 8px 0 0 25px;
}

 #menu8 ul {
    list-style: none;
     margin: 0;
    padding: 0;
}

标题是黑色的,但列表项不是...

4

1 回答 1

1

#menu8 上的背景颜色在 HEX 值前面缺少 #,#000 是黑色

#menu8 li { color: #000; }/*any text not wrapped in an anchor this would change the color of the discs*/
#menu8 li a { color: #000; } /*any text wrapped in anchor*/
于 2013-11-07T15:04:37.013 回答