表格隔行变色方法(纯CSS) /* 纯CSS表格隔行变色 */ table tr:nth-child(odd){background:#F4F4F4;}//奇数行tr table td:nth-child(even){color:#C00;}//偶数列td