gpt4 book ai didi

CSS :not workaround for Internet Explorer

转载 作者:行者123 更新时间:2023-12-05 00:01:16 25 4
gpt4 key购买 nike

following example适用于 Firefox 4,但不适用于 Internet Explorer 8:

HTML:

<div class='first'>A</div>
<div>B</div>
<div>C</div>

CSS:

div:not(.first) {
color: red;
}

您建议使用什么变通方法使其在两种浏览器中都能正常工作?

最佳答案

为什么你不能这样做?:

div {
color: red;
}
div.first {
color: inherit;/* or whatever color you want*/
}

这并不是真正的 :not() 解决方法,但据我所知它适用于您的示例。如果您没有类(class),您也可以随时使用 :first-child

Demo

关于CSS :not workaround for Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5803822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com