クラスのないタグにだけCSSを指定する方法

CSSで「:not([class])」を指定することで、クラスがついていないタグにのみCSSをつける事ができます。

a:not([class]) {
 text-decoration: underline:
}