Chrome 中 CSS :first-child:before 的奇怪行为

发布于 2024-10-29 22:30:48 字数 1365 浏览 5 评论 0原文

我在 Chrome 10 w/ :first-child:before 中看到一些相当奇怪的东西。

有了这个 HTML

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
</ul>

<ul>
    <li>Four</li>
    <li>Five</li>
    <li>Siz</li>
</ul>

和这个 CSS

ul {
    list-style-type: none
}

li:before {
    content: "* "
}

li:first-child:before {
    content: ""
}

任何人都可以解释为什么

  • Four
  • 在 Win XP SP3 中的 Chrome 10.0.648.204 中呈现星号?请参阅 http://jsfiddle.net/MxtHm/

    但是如果我将 CSS 更改为

    ul {
        list-style-type: none
    }
    
    li:before {
        content: "* "
    }
    
    li:first-child {
        background: none
    }
    
    li:first-child:before {
        content: ""
    }

  • ;四个
  • 渲染不带星号。请参阅 http://jsfiddle.net/SGRej/

    Safari 5.0.4 和 Firefox 3.6.16 渲染这两个示例相同的。我已经阅读了 Meyer 的书和 CSS 规范来寻找解释,但没有任何运气,并且 CSS 验证器并没有抱怨 CSS。

    极其奇怪的是,如果我在 Chrome 中检查 Element,它会显示 li:first-child:before 覆盖 li:before 规则。

    JSFiddle 使用的是 XHTML 1.0 Strict DOCTYPE,但我也在 HTML5 DOCTYPE 中看到了这一点。

    谢谢。

    2011-04-28 编辑:这似乎已在 Chrome 11.0.696.57 中得到修复,以及其他类似的伪元素相关问题。

    I am seeing something rather odd in Chrome 10 w/ :first-child:before.

    With this HTML

    <ul>
        <li>One</li>
        <li>Two</li>
        <li>Three</li>
    </ul>
    
    <ul>
        <li>Four</li>
        <li>Five</li>
        <li>Siz</li>
    </ul>

    and this CSS

    ul {
        list-style-type: none
    }
    
    li:before {
        content: "* "
    }
    
    li:first-child:before {
        content: ""
    }

    Can anyone explai why <li>Four</li> renders with an asterisk in Chrome 10.0.648.204 in Win XP SP3? See http://jsfiddle.net/MxtHm/

    But if I change the CSS to

    ul {
        list-style-type: none
    }
    
    li:before {
        content: "* "
    }
    
    li:first-child {
        background: none
    }
    
    li:first-child:before {
        content: ""
    }

    <li>Four</li> renders without the asterisk. See http://jsfiddle.net/SGRej/

    Safari 5.0.4 and Firefox 3.6.16 render both examples the same. I have gone through both Meyer's book and the CSS spec looking for an explanation without any luck, and the CSS validator isn't complaining about the CSS.

    The extremely odd thing is that if I Inspect Element in Chrome, it shows that the li:first-child:before is overriding the li:before rule.

    JSFiddle is using a XHTML 1.0 Strict DOCTYPE, but I am also seeing this with the HTML5 DOCTYPE.

    Thanks.

    2011-04-28 EDIT: This appears to have been fixed in Chrome 11.0.696.57, along with other similar pseudo-element related problems.

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

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

    发布评论

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

    评论(1

    向地狱狂奔 2024-11-05 22:30:48

    我相当确定您遇到了与我回答的上一个问题相同的问题:

    last-child: 未在 Chrome 中渲染后?伪元素使用问题?

    我发现了明显的事实,这是一个错误,并且发现了一些错误报告证实了这一点。

    其他人找到了一个奇怪的解决方法;查看已接受的答案。

    I'm reasonably sure you're getting bitten by the same issue as in this previous question I answered:

    last-child:after not rendering in Chrome? Pseudo-element use issue?

    I figured out the obvious truth in that it was a bug, and found some bug reports confirming it.

    Somebody else found an odd workaround; see the accepted answer.

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