table {
	width: 100%;
	background-color: gold;
}
tr:nth-child(even) { background-color: azure; }
tr:nth-child(odd) { background-color: lavender; }
tr:first-child { background-color: aquamarine; }
tr.red { background-color: palevioletred; }
