CSS :not Selector

The :not selector excludes elements from matching.

Preview

Code

<style>
p:not(.special){
color:#2563eb;
}
</style>

<p>Normal paragraph</p>
<p class="special">Special paragraph</p>

More CSS Pseudo-classes Examples (9)