stephen-makrogianni
5/24/2018 - 2:13 AM

Two col chessboard

The nth-of-type equation to create a Two col chessboard

.chessboard{
  background-color: #000;
	&:nth-of-type(4n-6),
	&:nth-of-type(4n+3){
		background-color: #fff;
	}
}