JSFiddle - React, Tailwind, and code Playground

by karin

HTML

<div class='container'>
    <div class='block'></div>
</div>

CSS

.container{
    width:400px;
    height:10em;
    background:salmon;
}
.block{
    width:500px;
    height:8em;
    background:teal;
    overflow-x;scroll;
    float:left;
}