JSFiddle - React, Tailwind, and code Playground
by jockebq
HTML
<html>
<head>
<title></title>
</head>
<style>
body {
background-color: #000;
}
.parent {
height: 75px;
overflow: hidden;
}
.child {
background-color: #FFFFFF;
height: 100px;
overflow-x: scroll;
width: 400px;
white-space: nowrap;
}
</style>
<body>
<div class='parent'>
<div class='child'>Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test </div>
</div>
</body>