JSFiddle - React, Tailwind, and code Playground

HTML

<div> Some Content that is too long to fit in this div</div>

CSS

div {
    border: black dotted 1px;
    width: 10000px;
}

JavaScript

$(window).on('scroll', function() {
    $(this).scrollLeft(0); //sets left scroll to 0px
});