JSFiddle - React, Tailwind, and code Playground

by villard

HTML

<div id="test">
    <div id="t1"></div>
    <div id="t2"></div>
</div>

CSS

#test {
	width: 120px;
	height: 300px;
	background-color: red;
	position: relative;
}

#t1, #t2 {
    position: absolute;
    left: 0;
    top: 0;
}

#t1 {
	width: 50px;
	height: 50px;
	background-color: black;
    z-index: 20;
}

#t2 {
	width: 150px;
	height: 50px;
	background-color: pink;
    z-index: 10;
}