JSFiddle - React, Tailwind, and code Playground
by Will Stott
HTML
<div class="hello-red hello-blue">hello</div>
<div class="hello-blue hello-red">hello</div>
<div class="bye-red bye-blue">bye</div>
<div class="bye-blue bye-red">bye</div>
CSS
.hello-red {
color: red;
}
.hello-blue {
color: blue;
}
.bye-blue {
color: blue;
}
.bye-red {
color: red;
}