The :not exception

by vaheed akhtar

HTML

<div class="outer">
  <p>This is in the outer div.</p>
  <p id="thing">Will be RED.</p>  
</div>

CSS

p {
    color: green !important;
}
#thing {
    color: red !important;
}