JSFiddle - React, Tailwind, and code Playground
HTML
<div id="viewport">
<div id="slides">
<div>Content 1</div> <!-- not visible -->
<div>Content 2</div> <!-- visible -->
<div>Content 3</div> <!-- visible -->
<div>Content 4</div> <!-- visible -->
<div>Content 5</div> <!-- not visible -->
<div>...</div> <!-- not visible -->
</div>
</div>
CSS
#viewport {
width:300px;
overflow:hidden;
}
#slides {
width:1000px;
position:relative;
left:-150px;
}
#slides div {
width:100px;
height:100px;
float:left;
border:1px solid black;
}