Is it possible to select, say, every fourth element in a set of elements?
Ex: I have 16 <div> elements... I could write something like.
div:nth-child(4),
div:nth-child(8),
div:nth-child(12),
div:nth-child(16)
is there a better way to do this?
|
Is it possible to select, say, every fourth element in a set of elements? Ex: I have 16
is there a better way to do this? |
||||
|
|
|
Well, it's called
See the spec for details on how to write formulas for By the way, there's not much of a difference between 4n and 4n + 4 with regards to
Both select the 4th, 8th, 12th and 16th elements that you're looking for. Therefore, there's no difference in your question's context. |
||||
|
|
|
||||
|
|