1 style{ 2 table tr:nth child(odd){ 3 background:red; 4 }/*基數行背景紅*/ 5 table tr:nth child(even){ 6 background:blue; 7 }/*偶數行背景藍*/ 8 } 9