My current project involves styling a table. I am looking to apply a specific background color to each odd row, excluding the first row which contains headers.
I attempted the following code without success:
.new-items-table tr:nth-of-type(odd):not(.new-items-table tr:nth-of-type(1))
{
background-color: red;
}