JSFiddle - React, Tailwind, and code Playground

by techtiger255

HTML

<div></div>

CSS

div {
    height: 300px;
    width: 400px;
    margin: 100px auto;
    outline: 1px solid #ccc;
    transition: 1s all;
}

div:hover {
  box-shadow: inset 50px 0 50px 5px lightskyblue;
}