JSFiddle - React, Tailwind, and code Playground

by Kawaljit Singh

HTML

<div class="box">
 <div class="innerBox">
   this is innerbox
 </div>
</div>

CSS

.box {
  width: 100px;
  height: 100px;
  border: 1px solid black;
  overflow: hidden;
  background: black;
}

.innerBox {
  width: 50px;
  height: 120px;
  border: 1px solid red;
  position: absolute;
  z-index: 5;
  background: white;
  margin-top: 30px;
  margin-left: 30px;
}