JSFiddle - React, Tailwind, and code Playground
by karin
HTML
<div class="outer">outer
<div class="inner">
inner
</div>
</div>
CSS
.outer{
background:teal;
width:300px;
}
.inner{
background:salmon;
width:150px;
}
JavaScript
$(".inner").animate({
scrollLeft: 100
}, 800);