css table alternating row color code example
Example: css table alternating row color
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}