如何使用 3 种替代颜色为 table 行着色
How to color table rows with 3 alternate color
我想要 table 显示 3 种备用颜色(1-黑色、2-红色、3-白色、4-黑色、5-红色、6-白色 ....)我试过了nth-child(偶数)和 nth-child(奇数)
但是如何获得交替的 3 行颜色
继w3c之后,你试试这个:
tr:nth-child(3n+1) {
background-color: black;
}
tr:nth-child(3n+2) {
background-color: red;
}
tr:nth-child(3n) {
background-color: white;
}
我想要 table 显示 3 种备用颜色(1-黑色、2-红色、3-白色、4-黑色、5-红色、6-白色 ....)我试过了nth-child(偶数)和 nth-child(奇数) 但是如何获得交替的 3 行颜色
继w3c之后,你试试这个:
tr:nth-child(3n+1) {
background-color: black;
}
tr:nth-child(3n+2) {
background-color: red;
}
tr:nth-child(3n) {
background-color: white;
}