这个 CSS 声明是什么意思?
你能告诉我这个声明是什么意思吗?为什么它有两次提到 ul 标签?
.jqueryslidemenu ul ul
could you tell me what does this declaration mean. Why does it have ul tag mentioned twice?
.jqueryslidemenu ul ul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它将匹配作为 UL 标记的后代的所有 UL 标记,该 UL 标记是具有 jqueryslidemenu 类的元素的后代。
It would match all UL tags that are descendants of a UL Tag that is a descendant of an element that has the jqueryslidemenu class on it.