JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<div>
  <section></section>
</div>

CSS

div {
  border: solid 1px black;
  width: 200px;
  height: 100px;
  margin: 50px;
  overflow: hidden;
  position: relative;
}

section {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 200px;
  width: 100px;
  border: solid 1px blue;
}