JSFiddle - React, Tailwind, and code Playground
by damiantt
HTML
<div class="overflow">
<div class="content">
</div>
</div>
CSS
.overflow {
overflow-x: auto;
overflow-y: visible;
width: 100px;
height: 100px;
}
.content {
width: 1000px;
height: 500px;
background: #CAFB3C;
}