JSFiddle - React, Tailwind, and code Playground

by Oski Krawczyk

HTML

<div class="a">
    <div class="b"></div>
</div>

CSS

.a {
    border: solid 1px red;
    height: 200px;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.b {
    position: absolute;
    top: -50px;
    left: -50px;
    height: 100px;
    width: 100px;
    background: green;
}