CSS 子选择器
假设我有以下 HTML
<div id="div1">
....
<span class="innercontents">...</span>
....
</div>
我可以只选择父 ID 的子 ID 吗?
我可以做类似的事情吗?
#div1 span
{
...
}
谢谢您的帮助。
抱歉造成任何混乱。我应该说得更清楚。在上面的示例中,我只想选择属于该特定的标签
Lets say I have the following HTML
<div id="div1">
....
<span class="innercontents">...</span>
....
</div>
Can I select just the child of the parent ID?
Could I do something like
#div1 span
{
...
}
Thanks for any help.
Sorry for any confusion. I should have been more clear. In the above example I would like to just select the tags that fall under that specific
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面将从以下 HTML 中选择这些 id:
c 和 d
如果您希望从上述 HTML 中选择所有后代,例如
b、c 和 d
,则使用The above will select these ids from the following HTML:
c and d
if you want all descendents selected such as
b, c, and d
from the above HTML then use是的。 <代码>#div1> .innercontents。这是直接后代选择器,或子选择器。
这是 CSS 选择器的最佳参考: http://www.w3.org/TR /css3-selectors/#selectors
Yes.
#div1 > .innercontents
. This is the immediate descendent selector, or child selector.This is the best reference for CSS selectors: http://www.w3.org/TR/css3-selectors/#selectors