IE 的 CSS 行为:首创

发布于 2024-12-02 07:34:41 字数 331 浏览 1 评论 0原文

我想使用 CSS 行为来定位 div 中的第一个 p 元素,该元素不是 div 中的第一个元素。

我在这里看到了一个类似的问题,它通过使用级联选择器来回答 div 中的 p,例如:

div h1 p

因为我可能不知道第一个元素可能是什么(可能是 h1h2 等,我想知道是否可以在 CSS 中使用 IE 行为来模仿 :first-of-type

提前感谢您的帮助。

I wanted to use a CSS behaviour to target the first p element in a div, which is not the first element in the div.

I saw a similar question on here which answered with using cascading selectors to the p in the div, like:

div h1 p

As I may not know what the first element may be (maybe h1 or h2 etc, I was wondering whether it was possible to mimic the :first-of-type using IEs behaviours in CSS.

Thanks in advance for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

皇甫轩 2024-12-09 07:34:41

例子来说效果很好

div p:first-of-type {
    background:red;
}

这对于这个

<div>
    <h1>Test</h1>
        <p>Something</p>
        <p>Something else</p>
</div>

http://jsfiddle.net/jasongennaro/zJaAa/1/

This works fine

div p:first-of-type {
    background:red;
}

for this

<div>
    <h1>Test</h1>
        <p>Something</p>
        <p>Something else</p>
</div>

Example: http://jsfiddle.net/jasongennaro/zJaAa/1/

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