blob: 135763bf6bb8d705810247b3e6ac6b85e0d54b38 [file] [log] [blame] [edit]
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#scroll-container {
overflow: hidden scroll;
width: 300px;
height: 100px;
}
#target {
width: 100px;
height: 100px;
margin-top: 100px;
background: green;
}
</style>
<div id="scroll-container">
<div id="target">target</div>
</div>
<script>
const scroller = document.getElementById('scroll-container');
scroller.scrollTop = 100;
</script>