在大型下拉菜单中使用 css 特异性选择 li

发布于 2025-01-02 20:12:04 字数 189 浏览 0 评论 0原文

JS Fiddle Link

该代码在小提琴上运行得不太好,但在其他地方运行良好,因此请忽略下拉列表失去位置。

我的问题是:我如何选择 div 中带有 css 的链接以及类“dropdownCats”来设置它们的样式?

JS Fiddle Link

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染柒℉ 2025-01-09 20:12:04

您可以使用包含 ulid ,后跟常用的类选择器:

#navTest .dropdownCats a {  }

您需要 id 选择器使其比下一个更具体最具体的选择器:

#navTest li a {  }

这是一个更新的小提琴(将鼠标悬停在“类别”上,出现的链接现在为红色) 。

You can use the id of the containing ul followed by the usual class selector:

#navTest .dropdownCats a {  }

You need the id selector to make it more specific than the next most specific selector:

#navTest li a {  }

Here's an updated fiddle (hover over "Categories" and the appearing links are now red).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文