JSFiddle - React, Tailwind, and code Playground

by kyllle

HTML

<div id="box">    
</div>
<div id="hoveredBox">
</div>

CSS

#box{
    background: #f2f2f2;
    width: 200px;
    height: 200px;
    position: relative;
}

#hoveredBox{
    background: #dedede;
    width: 200px;
    height: 200px;
    position: absolute;
}