JSFiddle - React, Tailwind, and code Playground

by blineberry

HTML

<div id="outer">
    <div id="inner"></div>
</div>

CSS

#outer {
    width: 200px;
    height: 200px;
    overflow-x: scroll;
    direction: rtl;
    position: relative;
    background: red;
}

#inner {
    width: 500px;
    height: 200px;
    position: absolute;
    right: 0;
    background: blue;
}