I use a selector to select all elements that do not have one class:
.list th:not(.foo) { }
How can I apply this to multiple classes?
.list th:not(.foo), .list th:not(.bar) { }
The CSS above will certainly not do this, I need something like this pseudo:
.list th:not(.foo and .bar)
Is this possible in CSS and how?
source share