JSFiddle - React, Tailwind, and code Playground

by swfour

HTML

<div id="box1">
    <div id="box2">
        <div id="box3"></div>
    </div>
</div>

CSS

#box1 {
    position: relative;
    top: 10px;
    left: 10px;
    width: 200px;
    height: 85px;
    background: blue;
}
#box2 {
    width: 700px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left:-50px;
    overflow:hidden;
}
#box3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: red;
    position: absolute;
    bottom: 0px;
    left: 200px;
}