JSFiddle - React, Tailwind, and code Playground

by Oleg Khobotov

HTML

<div class="wrapper">
    <div class="inside"></div>
</div>

CSS

.wrapper{ 
    position: relative;
    width: 300px;
    height: 100px;
    margin: 100px;
    border: 5px solid blue; 
    background-color: red;
    overflow-x: hidden; /* wtf? */
    overflow-y: visible; /* wtf? */
}

.inside{
    left: -50px;
    position: absolute;
    bottom: 20px;
    width: 100px;
    height: 120px;
    background-color: green;
}