JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="main">
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
CSS
.wrapper
{
width: 1000px;
min-height: 350px;
background-color: #e9e9e9;
margin: auto;
}
.main
{
background-color: #00fffd;
height: 200px;
overflow-x: scroll;
overflow-y: hidden;
white-space:nowrap;
}
.box
{
width: 2000px;
}
.box div
{
height: 150px;
background-color: #ff0000;
width: 150px;
margin-right: 10px;
margin-left: 10px;
float: left;
margin-top: 15px;
margin-bottom: 15px;
}