I have created a CSS stylesheet for my project. Is there any way I can create a css rule that applies to all table elements EXCEPT table elements belonging to the class \"do
The negation pseudo-class seems to be what you are looking for.
table:not(.dojoxGrid) {color:red;}
It's not supported by ≤ IE8 though.