JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<div class="Div nr1"></div>
<div class="Div nr2"></div>
<div class="Div nr3"></div>
</div>
CSS
#container{
margin:0px auto;
white-space: nowrap;
overflow: auto;
font-size: 0;
}
.Div {
display: inline-block;
width: 510px;
height: 300px;
}
.nr1 {
background-color: Red;
}
.nr2 {
background-color: Blue;
}
.nr3 {
background-color: Green;
}