I am new to jquery. I have this in my code:

$("tbody tr:odd ").addClass("alt");

with css:

tbody tr.alt td {
   background-color: #e6EEEE;
}

I have a cell in table with

<td class="coloron">

Right now, the every other row command is over riding my class="coloron".

How can I maintain my cell unique colour while having every other row colouring?

link|improve this question

77% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Define the styles so that your unique color is defined later in the stylesheet, like this:

tbody tr.alt td {
  background-color: #e6EEEE;
}
tbody tr td.coloron {
  background-color: #FFFFFF;
}

If a row has multiple classes, given the same level of specificity in the style rule, the one defined last in the CSS wins. You can see it working here.

link|improve this answer
A good answer, +1 – Ben Everard Sep 3 '10 at 12:49
This works great!, many thanks! – Gordon Sep 3 '10 at 13:48
@Gordon - welcome :) be sure to accept an answer if it resolves your problem! – Nick Craver Sep 3 '10 at 14:54
feedback

Your tbody tr.alt td is more specific than .coloron and will override it, instead do something like this:

tbody tr.alt td.coloron {
   // your CSS
}    

Or perhaps this:

tbody tr td.coloron {
   // your CSS
}
link|improve this answer
feedback

use css !important:

td.coloron {
    background: #ccc !important;
}
link|improve this answer
2  
No! This is the wrong way to solve CSS specificity problems, just proves ones lack of understanding of the initial problem. – Ben Everard Sep 3 '10 at 12:45
I agree with you : ) – aularon Sep 3 '10 at 12:53
feedback

try adding this in your CSS:

.coloron, .coloron.alt { background:red }

link|improve this answer
One is a <td>, one is a <tr> :) – Nick Craver Sep 3 '10 at 12:47
Can you even combine classes like that? – Ben Everard Sep 3 '10 at 12:48
@ILMV - Yep, but since they're not on the same element, it doesn't apply here. – Nick Craver Sep 3 '10 at 12:48
Cheers Nick, was questioning their use in general, you're right the classes belong to two separate elements. – Ben Everard Sep 3 '10 at 12:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.