gpt4 book ai didi

css - 如何让 Internet Explorer 8 支持第 n 个 child() CSS 元素?

转载 作者:技术小花猫 更新时间:2023-10-29 10:09:37 25 4
gpt4 key购买 nike

我想给我的表格行添加斑马条纹效果。在所有其他浏览器中,它可以使用 CSS 第 n 个子元素来完成。但我也想用 IE 8 来做。那么我该怎么做呢?

最佳答案

使用 polyfill:Selectivizr足够好。

没有 polyfill:因为 IE8 支持 first-child,你可以欺骗它来支持 iE8 中的 nth-child,即

/*li:nth-child(2)*/
li:first-child + li {}/*Works for IE8*/

虽然我们不能模拟复杂的选择器,即 IE8 的 nth-child(2n+1) 或 nth-child(odd)。

关于css - 如何让 Internet Explorer 8 支持第 n 个 child() CSS 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10577674/

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