tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

table-cell-overflow-auto-scrolled-ref.html (363B)


      1 <!DOCTYPE html>
      2 <div style="width: 100px; height: 100px; border: solid; box-sizing: border-box">
      3  <div id="cell" style="width: 100%; height: 100%; background: green; overflow: auto">
      4     <div style="width: 200px; height: 50px; background: hotpink; border: 2px solid yellow"></div>
      5   </div>
      6 </div>
      7 <script>
      8 onload = () => {
      9  cell.scrollLeft = 120;
     10 }
     11 </script>