JSFiddle - React, Tailwind, and code Playground

by mgoetzke

HTML

<div class='container'>
    <div class='inside'>
        HUHU
    </div>
</div>

CSS

.container{
    background-color:red;
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.inside{
    top: 75px;
    background-color:yellow;
    height: 100px;
    position:absolute;
}