JSFiddle - React, Tailwind, and code Playground
HTML
<div id="parent">
<div id="child1">
1
</div>
<div id="child2">
2
</div>
</div>
CSS
#parent {
width: 300px;
overflow: auto;
display: grid;
}
#child1 {
background: green;
padding: 20px;
}
#child2 {
width: 500px;
background: red;
padding: 20px;
}