0

使用下面的 CSS,我试图获得悬停效果以省略当前页面,但事实并非如此。

#access li:hover  a,
#access ul ul :hover a{
    background: #37617a;
}



#access ul li.current-menu-item  a:hover {
    background:none
}
4

1 回答 1

1

这可能是您想要的,将#access 作为 ul 的 id。 jsfiddle测试

#access li:hover a{
    background: #37617a; }

#access li.current-menu-item a{
    background:none }
于 2012-09-26T21:22:43.167 回答