JSFiddle - React, Tailwind, and code Playground
by goodfriend
HTML
<div class="scrollable">
<div class="content">short</div>
<div class="content">looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong</div>
</div>
CSS
.scrollable {
width: 300px;
height: 300px;
overflow: auto;
}
.content {
background-color: lightblue;
display: table-row;
}