JSFiddle - React, Tailwind, and code Playground

HTML

<div>Hello</div>

CSS

div {
    background: red;
    -webkit-transition: all 1s linear;            
}
div:hover {
     background:green;   
}