dropcss icon indicating copy to clipboard operation
dropcss copied to clipboard

Improperly purged p:not(.exclude, .special) { color: blue; font-weight: bold; }

Open akash-rp opened this issue 10 months ago • 0 comments

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()

akash-rp avatar Mar 29 '24 11:03 akash-rp