This CSS selector picks up elements without a class attribute:
a:not([class])
This CSS selector picks up elements without an id attribute:
a:not([id])
But what is the syntax for a CSS selector picks up elements that have no id and no class?
I tried the following:
a:not([class][id])
But what it did is pick up elements that have no id or have no class.
How about
FIDDLE