JSFiddle - React, Tailwind, and code Playground

by Hive7

HTML

<div class="container">
    <div class="div"></div>
    <div class="div"></div>
    <div class="div"></div>
</div>

CSS

.container {
    position: relative;
    width: 405px;
    padding: 2px;
    height: 500px;
    background: red;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
}
.div {
    width: 200px;
    height: 200px;
    background: blue;
    display: inline-block;
    white-space: nowrap;
    border: 1px solid red;
}