JSFiddle - React, Tailwind, and code Playground

by Marco Iamonte

HTML

<div id="hey">Ohey, this is a very cool div, right?.. Top..?</div>

CSS

#hey {
    transition: all 1s ease;
    background: red;
    color: white;
    width: 150px;
    height: 150px;
}

#hey:hover {
    background: green;
    border-radius: 150px;
    padding: 30px;
}