JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

HTML

<div id="wrap">
    <div id="inner"></div>
</div>

CSS

#wrap {
    background:#ddd;
    width:600px;
    height:600px;
    position:absolute;
}
#inner {
    width:100px;
    height:100px;
    background:#38e;
    position:absolute;
    top:0px;
    left:0px;
    transition:3s;
}
#inner:hover {
    top:300px;
    left:300px;
}