JSFiddle - React, Tailwind, and code Playground

by Oleh Kotsubko

HTML

<div id="id" class="class class-one class-two"></div>

CSS

div {
  width: 200px;
  height: 200px;
  background: #000;
}

#id {
  background: red;
}

.class.class-one.class-two {
  background: orange;
}