JSFiddle - React, Tailwind, and code Playground

by Sir_Pepe

HTML

<div></div>
<div></div>
<div></div>

CSS

body {
    position: relative;
    background: black;
    margin: 5em;
}
div {
    background-color: white;
}
div:nth-child(1) {
    z-index: 1337;
    position: relative;
    left: 200px;
    height: 500px;
    width: 300px;
}
div:nth-child(2), div:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    height: 280px;
    width: 120px;
}
div:nth-child(3) {
    left: 580px;
}