table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
如上,:nth-child(odd)匹配序列号为奇数的元素,:nth-child(even)匹配序列号为偶数的元素。
微信扫一扫
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
如上,:nth-child(odd)匹配序列号为奇数的元素,:nth-child(even)匹配序列号为偶数的元素。
相关推荐