I have to change the style of everything on an entire page, except for a huge list of exempted elements. Apparently CSS not() doesn't support a comma syntax like this: :not(p, div). Do I have to just make a huge list like the one below, repeating the style for each one, or is there a quicker solution?
:not(p){xyz}
:not(div){xyz}
:not(a){xyz}