标签: css3
我一直在读关于css3的n-child,但无法弄清楚我怎么能在 行3,4 | 7,8 | 11,12 | 15,16等是黄色的。 基本上每隔2行都有样式。
由于
答案 0 :(得分:1)
结合以下内容:
nth-child(4n+3)
nth-child(4n+4)
nth-child(4n)
table tr:nth-child(4n+3) td, table tr:nth-child(4n+4) td { background: red; }
DEMO