JSFiddle - React, Tailwind, and code Playground

HTML

<div class="outer">
<div class="inner">
</div>
</div>

CSS

.outer {
    width: 100px;
    height: 100px;
    background-color: indianred;
    overflow: hidden;
}

.inner {
    position: absolute;
    background-color: lightblue;
    height: 50px;width: 500px;
    top: 500px;
}