JSFiddle - React, Tailwind, and code Playground

by phloe

HTML

<div id="id" class="class">

</div>

CSS

div {
  min-height: 200px;
}

#id {
  background-color: red;
}

.class:matches(#id) {
  background-color: green;
}