JSFiddle - React, Tailwind, and code Playground
HTML
<p>Hover over the div element above, to see the transition effect.</p>
<div></div>
CSS
div
{
width:100px;
height:100px;
position:absolute;
left:0px;
background:red;
-webkit-transition-duration:.5s;
-webkit-transition-timing-function:linear;
-webkit-transition-delay:0s;
}
div:hover
{
left:200px;
}