gpt4 book ai didi

php - 更改表中行的颜色

转载 作者:行者123 更新时间:2023-11-28 13:33:50 122 4
gpt4 key购买 nike

你好,我正在研究 PHP 中表格的样式。我只卡在一点,我无法更改表格行的颜色,或者像奇数行应该显示为白色背景甚至蓝色 。我尝试了以下 css 代码,但没有用

tbody:nth-child(2n) { /* even rows */ 
background-color:#eee;
}
tbody:nth-child(2n+1) { /* odd rows */
background-color:#ccc;
}

最佳答案

如果不是你浏览器的问题,请试试css

table#tableid tr:nth-child(2n) { /* even rows */ 
background-color:#eee;
}
table#tableid tr:nth-child(2n+1) { /* odd rows */
background-color:#ccc;
}

table#tableid tr:nth-child(even) { /* even rows */ 
background-color:#eee;
}
table#tableid tr:nth-child(odd) { /* odd rows */
background-color:#ccc;
}

关于php - 更改表中行的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10562787/

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