tor-browser

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

position-fixed-on-landscape-content.html (460B)


      1 <!DOCTYPE html>
      2 <meta name="viewport" content="width=device-width, minimum-scale=0.5">
      3 <style>
      4 html, body {
      5  margin: 0;
      6  width: 100%;
      7  height: 100%;
      8  scrollbar-width: none; /* avoid drawing scrollbars */
      9 }
     10 #twice-width {
     11  width: 200%;
     12  height: 100%;
     13  position: absolute;
     14 }
     15 #fixed {
     16  width: 200px;
     17  height: 200px;
     18  background-color: green;
     19  position: fixed;
     20  bottom: 0px;
     21  right: 0px;
     22 }
     23 </style>
     24 <div id="twice-width"></div>
     25 <div id="fixed"></div>