Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
background-color我有一个 Superfish 菜单,当我将鼠标悬停在它上面并且子菜单进入视图时,我希望为所选选项保留某个选项。
background-color
我已经写了这个,但是,它似乎并不适用:
.sf-menu ul li:hover > a {background-color: #da2026;}
如果我以元素本身为目标并使用<箭头向后工作,它会起作用吗?
<
这可能是一个很好的起点
.sf-menu li li a:hover, .sf-menu li.sfHover li a:hover { background-color: #da2026; }
或者也许只是
.sf-menu li li.sfHover a{ background-color: #da2026; }