I\'m trying to zebra stripe my divs in my website, sounds simple enough, however I\'ve found that when I added a header in between the rows of my divs it seems to count the
You probably want to match on type, not child.
Use :nth-of-type such as
.row:nth-of-type(odd) { background: #e0e0e0; }