I would like to write a CSS selector rule that selects all elements that don\'t have a certain class. For example, given the following HTML:
I think this should work:
:not(.printable)
From "negative css selector" answer.