CSS :Not attribute
use a class on that table and put that in the not
table:not(.foo) {
}
you need a selector in the not and width = 100% is not one
Attribute selectors are surrounded by []
, so your selector should look like this instead:
table:not([width="100%"]) {
width: myValue;
}