If I have a div with a class='myDiv'
or something is it then possible to make a not selector in a stylesheet not to style anything inside that div?
In my particular case I'm talking tables, th, tr and td's inside that div.
table:not([class='myDiv'])
thead tr:not([class='myDiv'])
tr:not([class='myDiv'])
td:not([class='myDiv'])
Something similar to that so that the styling in question doesn't affect the elements within the div with that class?
Edit: In my previous questions you can probably see what I am trying to do. The problem is I want to change an external stylesheet (that is used all over the website) in such a way that it still works as it does now for the rest of the website, but should not style my calendar tables.