JSFiddle - React, Tailwind, and code Playground
by Yoghurts
HTML
<div class="container">
<div class="item">
</div>
<div class="item">
</div>
<div class="item">
</div>
<div class="item">
</div>
<div class="item">
</div>
</div>
CSS
.container {
width: 400px;
border: 1px solid gray;
height: 50px;
overflow-x: auto;
display: flex;
}
.item {
width: 100px;
height: 30px;
background: red;
margin-right: 10px;
}