CSS 用于具有某些子元素的元素?
可能的重复:
是否有 CSS 父选择器?
假设我有这个 html
<div class="house"><span class="zombie"/></div>
<div class="house"><span class="vampire"/></div>
<div class="house"><span class="zombie"/></div>
我怎么能编写一些 CSS 来定位只有“span .vampire”子级的“div .house”?并且“div .house”可能并不总是“span .zombie”的直接父级
Possible Duplicate:
Is there a CSS parent selector?
Lets say I have this html
<div class="house"><span class="zombie"/></div>
<div class="house"><span class="vampire"/></div>
<div class="house"><span class="zombie"/></div>
How could I write a bit of CSS to target "div .house" that only has children with "span .vampire"? And "div .house" might not always be the direct parent of "span .zombie"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。这是 CSS 无法做到的一件事。
jQuery 有
:has()
伪选择器。You can't. This is the one thing that CSS can't do.
jQuery has the
:has()
pseudo-selector.仅靠 CSS 是做不到的。不过,您可以使用 jQuery 轻松完成。
或者
You can't do it with CSS alone. You can however quite easily with jQuery.
or