The :not exception
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;
}
<div class="outer">
<p>This is in the outer div.</p>
<p id="thing">Will be RED.</p>
</div>
p {
color: green !important;
}
#thing {
color: red !important;
}