JSFiddle - React, Tailwind, and code Playground

by Christian Sonne

HTML

<div class="a" class="b">first</div>
<div class="b" class="a">second</div>

CSS

div {
  width: 100px;
  height: 100px;
}

.a {
  background: red;
}

.b {
  background: green;
}