JSFiddle - React, Tailwind, and code Playground

HTML

<div class="one">
    <div class="two"><div>
    <div class="three"><div>
</div>

CSS

.one {
    
}
.two {
    width: 150px;
    height: 200px;
    float: left;
    background: blue;
}
.three {
    width: 50px;
    height:200px;
    float: left;
    background: green;
}
.three:hover {
    background: orange;
}