使用下面的 CSS,我试图获得悬停效果以省略当前页面,但事实并非如此。
#access li:hover a,
#access ul ul :hover a{
background: #37617a;
}
#access ul li.current-menu-item a:hover {
background:none
}
使用下面的 CSS,我试图获得悬停效果以省略当前页面,但事实并非如此。
#access li:hover a,
#access ul ul :hover a{
background: #37617a;
}
#access ul li.current-menu-item a:hover {
background:none
}
这可能是您想要的,将#access 作为 ul 的 id。 jsfiddle测试
#access li:hover a{
background: #37617a; }
#access li.current-menu-item a{
background:none }