I have a table where the even rows are given the class "even" and the odd rows "odd". But I also want to give the rows classes like "complete" or "problem" that give them other colors, but I still want the hue of the colors to be dark or light depending on if they're even or odd.
Examples
<table>
<tr class="even problem">
<tr class="odd complete">
<tr class="even complete">
<tr class="odd complete">
<tr class="even incomplete">
<tr class="odd complete">
</table>
Will I have to create separate classes for every combination, or is there some other way?
Thanks for all ideas