JSFiddle - React, Tailwind, and code Playground
by AltayH
HTML
<div id="carousel">
<div class="child">FirstFirstFirstFirst</div><div class="child">SecondSecondSecondSecord</div><div class="child">ThirdThirdThirdThird</div>
</div>
CSS
#carousel {
overflow: auto;
white-space: nowrap;
width: 200px;
}
.child {
display: inline-block;
}