JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="body">
<div class="box">
  <div class="box1"></div>
</div>
</div>

CSS

div.body {
  max-width: 500px;
  margin: auto;
}
div.box {
  max-width: 100%;
  padding-top: 50%;
  background: red;
  overflow: hidden;
  position: relative;
}
div.box1 {
  width: 90%;
  height: 200%;
  position: absolute;
  background: blue;
  top: 0;
}