JSFiddle - React, Tailwind, and code Playground

by Dineshkani

HTML

<div>Move your mouse here to see the result</div>

CSS

div{
 width: 400px;
    height: 400px;
    background-color: blue;
    color: white;
    font-size: 20px;
}
div:hover{
    background-color: red;
    color: black;
}