gpt4 book ai didi

css - 如何单独使用 CSS 为 IE 和 Firefox 获取奇数/偶数着色?

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

我的 web 元素使用 php,但我需要单独使用 CSS 进行着色。

因此我需要在 Firefox 和 Internet Explorer 中运行的代码。

此代码已编写,但在 Internet Explorer 中不起作用:

.tbl_css col:nth-child(odd){      
}

.tbl_css col:nth-child(even){
}

最佳答案

低版本IE不支持伪选

您可以使用 jQuery 使其工作:

$(document).ready(function(){
$('table tr:even').addClass('even');
$('table tr:odd').addClass('odd');
});

简单地在 CSS 中:

.even{ /* your styles */ }
.odd { /* your styles */ }

关于css - 如何单独使用 CSS 为 IE 和 Firefox 获取奇数/偶数着色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7471190/

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