JSFiddle - React, Tailwind, and code Playground
by Josh Pullen
HTML
<div></div>
CSS
div {
width: 200px;
height: 200px;
background: blue;
transition: all 0.5s cubic-bezier(.99,0,.46,1.87);
}
div:hover {
width: 400px;
}
by Josh Pullen
<div></div>
div {
width: 200px;
height: 200px;
background: blue;
transition: all 0.5s cubic-bezier(.99,0,.46,1.87);
}
div:hover {
width: 400px;
}