I have a few HTML tables. These tables do not have CSS classes. The two tables have width="100%" attribute. Other tables don't have the width attribute.
Using only CSS I need to set the width of the tables which don't have width=100%. Something like this:
table:not(width="100%"){
    width: myValue;
}