JSFiddle - React, Tailwind, and code Playground
by dimskraft
HTML
<div id="mydiv">
Hello world 1<br/>
Hello world 2<br/>
Hello world 3<br/>
Hello world 4<br/>
Hello world 5<br/>
Hello world 6<br/>
Hello world 7<br/>
Hello world 8<br/>
</div>
<input type="button" value="scroll" onclick="document.getElementById('mydiv').scrollTop+=10">
CSS
div {
background-color: green;
height: 100px;
overflow: scroll;
}