JSFiddle - React, Tailwind, and code Playground

HTML

<div style="width: 1096px; height: 434px; overflow: hidden; position: relative; border:solid 5px #555555;">
    <div id="RotationDiv">
        xxx
    </div>
</div>

CSS

#RotationDiv {
    -ms-transform-origin: 539px 539px;
    -webkit-transform-origin: 539px 539px;
    width: 434px;
    height: 1096px;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    background-color:Red;
}

JavaScript

$('html').scrollLeft(200)