2011-08-08 93 views

回答

9

您可以使用:nth-child(6n+1):nth-child(6n+2):nth-child(6n+3):nth-child(6n+4)等。

參考文獻:http://w3.org/TR/css3-selectors/#nth-child-pseudohttp://w3.org/TR/css3-selectors/#selectors(感謝@NayukiMinase)

此外,一個很好的例子是在這裏:Useful :nth-child Recipes - CSS-Tricks

+1

參考文獻:http://www.w3.org/TR/css3-選擇器/#nth-child-pseudo,http://www.w3.org/TR/css3-selectors/#selectors – Nayuki

+0

':nth-​​child(6n)'for 6,12,18 ... – BoltClock

1

nth-child如何工作here

您可以使用6n + x,您必須爲x插入適當的數字。

0

使用這個簡單的數學方程式:ND +一個

here a : first element index 
    n : n 
    d : difference 

Example: 1,7,13,etc 
here a : 1 
    n : n 
    d : 6 
    So the pseudo selector will be :nth-child(6n + 1) 

希望這有助於:)