html table row shading
The topic ‘html table row shading’ is closed to new replies.
Need help? Check out our Support site, then
Hi, Ive put in 6 x 3 grid html table to lay out some logos, however every other row the background is shaded with a cream colour? can I add some css code to remove this, id just like the whole table to be pure white.
Thanks.
The blog I need help with is: spaceprocontract.wordpress.com
Hey – sure. If you add the following css then the table row backgrounds will always be white:
table tr:nth-child(odd), table tr:nth-child(even) {
background:#fff;
}
Legend!
thanks.
The topic ‘html table row shading’ is closed to new replies.