选择子元素但不选择孙元素
我有以下简化的代码:
<div id="content">
<p>text</p>
<div id="container">
<div id="col1">
<p>text</p>
</div>
<div id="col2">
<p>text</p>
</div>
</div>
<p>text</p>
</div>
</div>
每当我为 CSS 文件中的 #content p
元素设置一些值时,这些更改也适用于 #col1 p
和 <代码>#col2 p。
我想做的是仅选择 #content
div 的子 p
元素,而不选择孙 p
元素。
我想,一种方法是向第一个子级添加一个类,然后通过它应用属性。
在 CSS2 或 CSS3 中是否有更好的方法?
I have the following, simplified, code:
<div id="content">
<p>text</p>
<div id="container">
<div id="col1">
<p>text</p>
</div>
<div id="col2">
<p>text</p>
</div>
</div>
<p>text</p>
</div>
</div>
Whenever I set some values to the #content p
element in the CSS file, the changes also apply to the #col1 p
and #col2 p
.
What I would like to do is select only the children p
elements of the #content
div and not select the grandchildren p
elements.
I imagine that one way of doing it would be to add a class to the first children and then apply properties throught it.
Is there any better way of doing it in either CSS2 or CSS3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 CSS 大于号
>
(Child选择器):Use the CSS Greater than sign
>
(Child selectors):您还可以为更深的
元素设置另一种样式,以覆盖您已指定的样式。就像这样:
You can also set another style for the deeper
<p>
elements that override the one you already specified. Like so: