JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

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