JSFiddle - React, Tailwind, and code Playground

by Sam Liew

HTML

<div class="myElement">normal</div>
<div class="myElement disabled">disabled</div>

CSS

.myElement {
    color: green;
    cursor: pointer;
}
.myElement:hover {
    color: red;
}
.myElement.disabled {
    color: green;
}