JSFiddle - React, Tailwind, and code Playground
by Daniel Tan
HTML
<div class="b">This text should be blue.</div>
CSS
div.b {
color: red;
}
div:not(.a) {
color: blue;
}
by Daniel Tan
<div class="b">This text should be blue.</div>
div.b {
color: red;
}
div:not(.a) {
color: blue;
}