JSFiddle - React, Tailwind, and code Playground

by Benjamín Ariel Nava Martínez

HTML

<div>
    <div id="right"></div>
    <div id="table"></div>
</div>

CSS

#right {
    float:right;
    width:100px;
    height:200px;
    background: blue;
    margin-left: 10px;
}

#right:hover {
    width: 200px;
}

#table {
    background:red;
    overflow:hidden;
    height:200px;
}