Hello,
I have a table and I wanted to make some of the cells have a different colour background (i.e. yellow). The grey cells don't change to yellow, but the white ones do. Is there a way I can override this so some of the grey cells can change to yellow.
I want to change the 21 x  30 cm cell to have a yellow background but the <td bgcolor="#ffda1a"></td> CSS doesn't work. 
Thanks,
Jen
                
Comments
table tr:nth-child(2n):not(:hover) td{background:unset;
}