Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Even & Odd Table Row Colours Re: Even & Odd Table Row Colours

#56665
Chris Coyier
Keymaster

Yeah it’s trivially easy with something like jQuery…

You can use a selector like $("td:odd")

then…

$("td:odd").addClass("oddRow")

Then apply styling for the odd rows in your CSS.