选择子元素但不选择孙元素

发布于 2024-12-08 08:06:03 字数 693 浏览 0 评论 0原文

我有以下简化的代码:

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

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

发布评论

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

评论(2

神妖 2024-12-15 08:06:03

使用 CSS 大于号 > (Child选择器):

#content > p

当某个元素是某个元素的子元素时,子选择器就会匹配。

Use the CSS Greater than sign > (Child selectors):

#content > p

A child selector matches when an element is the child of some element.

一人独醉 2024-12-15 08:06:03

您还可以为更深的

元素设置另一种样式,以覆盖您已指定的样式。就像这样:

#content p { color: red; }
#content div p { color: black; }

You can also set another style for the deeper <p> elements that override the one you already specified. Like so:

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