2013-08-26 61 views
0

我一直在閱讀關於css3的第n個孩子,但無法弄清楚我如何設計一個表格,其中 rows 3,4 | 7,8 | 11,12 | 15,16等是黃色的。 基本上每隔2行都是風格。風格表高亮其他2行

感謝

回答

1

聯合收割機如下:

  • 每4行從3日一個,這是nth-child(4n+3)
  • 每4行4日一個nth-child(4n+4))起開始 - 它也可以只是nth-child(4n)
table tr:nth-child(4n+3) td, table tr:nth-child(4n+4) td { 
    background: red; 
} 

DEMO