CSS默认LI颜色

时间:2013-11-07 15:01:50

标签: css

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

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;
}

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

1 个答案:

答案 0 :(得分: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*/