blob: 6128aa2d216d49dba462e0dde7b025abfb91ad47 [file] [log] [blame]
<head>
<meta name="viewport" content="width=device-width,minimum-scale=1">
</head>
<body style='margin: 0px;'>
<style>
#scroller {
overflow:scroll; width: 100vw; height:100vh;
position:relative; top: 30px; left:50px;
}
* {
scrollbar-width: none;
}
</style>
<div id='scroller'>
<div style='width: 200vw; height: 300vh; background: grey;'></div>
</div>
<script>
let scroller = document.getElementById('scroller');
scroller.scrollTop=100;
scroller.scrollLeft=200;
</script>
</body>