/* :nth-of-type(odd)奇数行 */ /* .el-table th:nth-of-type(odd), .el-table tr:nth-of-type(odd) { background: #d1ffec; } */ /* :nth-of-type(even)偶数行 */ /* .el-table th:nth-of-type(even), .el-table tr:nth-of-type(even) { background: #ffcc00; } */ /* :nth-child(4n+1)从第一行开始算起 每隔4个(包含第四个)使用此样式 */ /* .el-table th:nth-child(4n+1), .el-table tr:nth-child(4n+1) { background: #00ccff; } */ /* :nth-child(4n+2)从第二行开始算起 每隔4个(包含第四个)使用次样式 */ /* .el-table th:nth-child(4n+2), .el-table tr:nth-child(4n+2) { background: #090; } */ /* :nth-child(4n+3)从第三行开始算起 每隔4个(包含第四个)使用次样式 */ /* .el-table th:nth-child(4n+3), .el-table tr:nth-child(4n+3) { background: #009; } */ /* :nth-child(4n+4)从第四行开始算起 每隔4个(包含第四个)使用次样式 */ /* .el-table th:nth-child(4n+4), .el-table tr:nth-child(4n+4) { background: #990; } */
原文:https://www.cnblogs.com/DeerLin/p/14441562.html