在大型下拉菜单中使用 css 特异性选择 li
该代码在小提琴上运行得不太好,但在其他地方运行良好,因此请忽略下拉列表失去位置。
我的问题是:我如何选择 div 中带有 css 的链接以及类“dropdownCats”来设置它们的样式?
The code does not work too well on fiddle but works fine everywhere else, so ignore the drop down being out of position.
My question is: How would I select the links with css in the div with the class "dropdownCats" to style them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用包含
ul
的id
,后跟常用的类选择器:您需要
id
选择器使其比下一个更具体最具体的选择器:这是一个更新的小提琴(将鼠标悬停在“类别”上,出现的链接现在为红色) 。
You can use the
id
of the containingul
followed by the usual class selector:You need the
id
selector to make it more specific than the next most specific selector:Here's an updated fiddle (hover over "Categories" and the appearing links are now red).