JSFiddle - React, Tailwind, and code Playground
by Ishank Dubey
HTML
<div class='container'>
<div class='child'></div>
</div>
CSS
.container{
width:200px;
height:200px;
background-color:red;
overflow-x:auto;
overflow-y:auto;
}
.child{
width:800px;
height:800px;
background-color:yellow;
}