JSFiddle - React, Tailwind, and code Playground

HTML

<div class="one"></div>
<div class="two"></div>

CSS

.one {
  height: 200px; 
  background: red; 
  width: 200px;
/*  overflow: hidden; */
  z-index: 0;
  max-width: 100%;
}
.two {
  height: 500px; 
  background: blue; width: 100px; 
  transform:scale(1.5);
  transform-origin: 0 0;
  z-index:1;
}