JSFiddle - React, Tailwind, and code Playground
by darcyclarke
HTML
<div class="wrapper">
<div class="overflow"></div>
</div>
CSS
.wrapper {
border: 3px solid #000;
overflow-y: hidden;
height: 100px;
}
.overflow {
background: #bada55;
height: 300px;
width: 600px;
border: 3px solid #fff;
}