ok guys… what if I want have a specific css every 3 elements (to do a :nth-child(3n+3)) but only after the eleventh element ?
@bbnnt
Something like this? It works but im not too sure its semantic, i bet there is a better way.
li:nth-child(n+11):nth-child(3n+3) { }
I've got an ordered list and would like to select all list items after the 10th one. Is there a way to do this with pure css with some kind of nth child selector or somethin similar?
Cheers,
emma
:nth-child(1n+11)
:nth-child(n+11)
ok guys… what if I want have a specific css every 3 elements (to do a :nth-child(3n+3)) but only after the eleventh element ?
@bbnnt
Something like this? It works but im not too sure its semantic, i bet there is a better way.
CodePen example: