JSFiddle - React, Tailwind, and code Playground

by incutonez

HTML

<div class="absolute container">
  <div class="absolute child">
     Here
     <div class="content">
        Content     
     </div>
  </div>
</div>

CSS

.absolute {
  position: absolute;
}

.container {
  left: 0;
  top: 0;
}

.child {
  height: 200px;
  overflow: auto;
}

.content {
  height: 1000px;
  background-color: black;
  color: white;
}