多维菜单悬停问题
我刚刚开始制作wp-site。
不过我对菜单有一个小问题;我希望当您将孩子悬停在主菜单上时,主菜单保持活动状态。例如,当您将“Undersida 1”悬停在“Hem”下时,我希望“Hem”保留其背景颜色
。
I have just started making a wp-site.
I have a small problem with the menu though; I want the main menu to stay active while your hovering the children. For example, when you hover "Undersida 1" under "Hem", I want "Hem" to keep its backgroundcolor
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在 CSS 中进行以下更改来解决您的问题:
您应该使用“li:hover a”而不是“li a:hover”:
这应该起作用的原因是,即使您位于子菜单 li:hover 上仍然被视为活动样式表,但不是“li a:hover”。
You can solve your problem with the following change in your CSS:
you should use "li:hover a" instead of "li a:hover":
The reason this should work is that even when u are on the sub-menu li:hover is still considered as active stylesheet but not "li a:hover".
如果使用 addClass 方法怎么样?然后为该类指定背景颜色。
How about if you use the method addClass? Then give that class a background-color.