gpt4 book ai didi

css - 使 IE9 CSS nth-child 规则在 IE8 上工作

转载 作者:行者123 更新时间:2023-11-28 10:47:29 25 4
gpt4 key购买 nike

在 IE9 中,这段代码有效:

body.country-XYZ .abc:nth-child(3) {
display:none;
}

由于 :nth-child()IE9 开始工作,我怎样才能让它在 IE8 上工作?请提供适用于 ie8 的 nth-child(2n+1) 的替代方案

最佳答案

不是很优雅的 CSS 代码,但是你可以隐藏 .abc 元素从第 3 个rd 开始

body.country-XYZ .abc + .abc + .abc {
display:none;
}

然后您可以从第 4 个 元素再次显示它们

body.country-XYZ .abc + .abc + .abc + .abc {
display: block; /* or whatever is the default display value of .abc */
}

关于css - 使 IE9 CSS nth-child 规则在 IE8 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22912304/

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