How to create a css rule for all elements except one class?
Solution 1:
The negation pseudo-class seems to be what you are looking for.
table:not(.dojoxGrid) {color:red;}
It's not supported by ≤ IE8 though.
Solution 2:
Wouldn't setting a css rule for all tables, and then a subsequent one for tables where class="dojoxGrid" work? Or am I missing something?