JSFiddle - React, Tailwind, and code Playground

by Paf_Sebastien

HTML

<div class='parent'>
    <div class='child_static'></div>
    <div class='child_absolute'></div>
</div>

CSS

.parent {
    position: relative;
}

.child_static {
    height: 20px;
    background: blue;
}

.child_absolute {
    position: absolute;
    height: 50px;
    width: 50%;
    background: green;
    
    top: 0; left: 0;
}