I have alternating background colors however they have breaks in-between them due to the large spacing. I want the color to run through as though there was no spacing, so a solid bar all the way through.
tr:nth-child(even) {
background-color: #FFFFFF;
}
tr:nth-child(odd) {
background-color: #000000;
}