dropcss
dropcss copied to clipboard
Improperly purged p:not(.exclude, .special) { color: blue; font-weight: bold; }
CSS:
p:not(.exclude,.special) {
color: blue;
font-weight: bold;
}
HTML:
<div id="root">
<p>This is a paragraph.</p>
<p class="exclude">This paragraph is excluded from the style.</p>
<p class="special">This paragraph is excluded from the style.</p>
</div>
Only happens when there are multiple selectors inside :not()