JSFiddle - React, Tailwind, and code Playground
by Larzan
HTML
<div id="container">
<div id="content">
Very long text or images or whatever you need
</div>
</div>
CSS
#container {
overflow: scroll;
width: 200px;
}
#content {
width: 500px;
height: 100px;
}
JavaScript
var maxScroll = $("#content").width() - $("#container").width();
$("#content").append("<br>maxScroll: " + maxScroll + "px");