| <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> |