tor-browser

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

dynamic-toolbar-fixed-bottom-1-ref.html (384B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <meta name="viewport" content="width=device-width">
      4 <style>
      5 html {
      6    scrollbar-width: none;
      7 }
      8 #scrolled {
      9    height: 2000px;
     10    width: 100%;
     11 }
     12 #fixed {
     13    width: 100%;
     14    height: 200px;
     15    position: fixed;
     16    bottom: 0;
     17    background: red;
     18    margin-bottom: 50px;
     19 }
     20 </style>
     21 <body>
     22  <div id="scrolled"></div>
     23  <div id="fixed"></div>
     24 </body>
     25 </html>