1. 程式人生 > >table 隔行變色

table 隔行變色

class 隔行變色 tab color -c style div child ack

1 /*從第二行(偶數行)開始變色*/
2 table tr:nth-child(2n){
3       background-color:red;
4 }
5 
6 /*從第一行(奇數行)開始變色*/
7 table tr:nth-child(2n-1){
8       background-color:red;
9 }

table 隔行變色