Angular JS伪类选择器(奇偶行样式)
程序员文章站
2022-04-28 23:01:01
...
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
如上,:nth-child(odd)匹配***为奇数的元素,:nth-child(even)匹配***为偶数的元素。
上一篇: PHP 采集心得技巧_PHP教程