table 隔行变色
Posted 樊琇鸿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table 隔行变色相关的知识,希望对你有一定的参考价值。
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 隔行变色的主要内容,如果未能解决你的问题,请参考以下文章