> while in FF elements className after series of events states: "white active"
> in Opera the same element after same events has classNames: " active white"
>  
> so in Opera this styles won't apply for this element (while FF behaves 
> as expected):
> td.white.active{
>     background:#FFF;
>     border-color:#F00;
> }

To clarify: This is because multiple classes do also cascade. Thus 
class="white active" isn't the same as class="active white".

If both classes "one" and "two" of an element define the same 
properties, the later class overwrites the first:

.one { color: green; }
.two { color: blue; }

<p class="one two">Blue text</p>
<p class="two one">Green text</p>

And thus the selector .white.active does not match class="active white".


Regards, Klaus




_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to