JSFiddle - React, Tailwind, and code Playground
by dcardoso
HTML
<!-- style="background-color: green" -->
<div class="blue red" id="first">
first div
</div>
<div class="red blue">
second div
</div>
CSS
#first { background-color: orange; }
.blue { background-color: blue; }
.red { background-color: red; }
div.blue { background-color: green; }