JSFiddle - React, Tailwind, and code Playground
by alexb
HTML
<div id="container">
<img
id="content"
src="https://dummyimage.com/256/000300/ffffff"
alt=""
/>
</div>
CSS
#container {
background: red;
width: 200px;
height: 195px;
overflow: hidden auto;
}
#content {
max-width: 100%;
vertical-align: top;
}
JavaScript
setInterval(() => {
container.appendChild(content);
}, 500);