JSFiddle - React, Tailwind, and code Playground

by Gautam Kumar

HTML

<div class="main">
	<div class="parent">
		<div class="child"></div>
	</div>
</div>

CSS

.main{
			width : 400px;
			height: 400px;
			border :1px solid black;
			z-index: 10;
		}
		.parent{
			width: 100px;
			height: 100px;
			position: relative;
			background: #e3e3e3;
			z-index: 5;
		}
		.child{
			width : 200px;
			height: 200px;
			background: red;
		}