How to create a css rule for all elements except o

2019-01-31 22:20发布

问题:

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 "dojoxGrid"? Something like:

.not(dojoxGrid) table{
    width:100%;
    border-top:1px solid #dddddd;
    border-left:1px solid #dddddd;
    border-right:1px solid #dddddd;
    margin:1em auto;
    border-collapse:collapse;
}

回答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.



回答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?



回答3:

The safest bet is to create a class on those tables and use that. Currently getting something like this to work in all major browsers is unlikely.



回答4:

I just had the same problem, but the :not wasn't working properly in my case so i updated the css rules on body load.