JSFiddle - React, Tailwind, and code Playground

by Pratik Galoria

HTML

<div id="app" class="app" style="color: grey">
This is an app
</div>

CSS

div {
  color: green !important;
}

#app {
  color: blue;
}

.app {
  color: red;
}