JSFiddle - React, Tailwind, and code Playground
by igalst
HTML
<div class="inner">
<div class="box">I'm a box</div>
<div class="box">I'm a box</div>
</div>
CSS
.inner {
width: 500px;
height: 500px;
background: #FED;
position: relative;
margin: 20px; auto;
}
.box {
position: absolute;
}
.box:nth-child(1) {
background: #DAD;
top: 0;
bottom: 80%;
left: 0;
right: 75%;
}
.box:nth-child(2) {
background: #BAD;
top: 0;
bottom: 80%;
left: 26%;
right: 40%;
}