JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="inside">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
CSS
.container{
width:100%;
height:100px;
background-color:red;
overflow-x:scroll;
}
.inside div{
width:200px;
height:100px;
background-color:blue;
margin-right:0px;
float:left;
}
.inside{
width:1025px;
}