How do I place every second row to fit in with the top row in my hexagon grid? I used nth-of-type to create the equal spacing but now I need to somehow manage to target all hexagons of every second row. I could change my html markup but prefer to keep things clean with nth-of-type or nth-child.
http://codepen.io/anon/pen/QweBra
First css for spacing works.
#categories li:nth-of-type(1n+1){
margin:0 1em;
}
#categories li:nth-of-type(6n+6){
margin:2em 9em;
}