JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="container">
    <div class="box-1 box"></div>
    <div class="box-2 box"></div>
</div>

CSS

.container {
    position: relative;
}
.box {
    width: 200px;
    height: 200px;
}
.box-1 {
    position: relative;
    background: red;
    z-index: 2;
}
.box-2 {
    position: absolute;
    background: blue;
    top: 50%;
    transform: translateX(1px);
}