tor-browser

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

doc_inspector_infobar_02.html (500B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4  <meta charset="utf-8">
      5 
      6  <style>
      7    body {
      8      width: 100%;
      9      height: 100%;
     10    }
     11 
     12    div {
     13      position: absolute;
     14      height: 100px;
     15      width: 500px;
     16    }
     17 
     18    #below-bottom {
     19      bottom: -200px;
     20      background: red;
     21    }
     22 
     23    #above-top {
     24      top: -200px;
     25      background: black;
     26      color: white;
     27    }";
     28  </style>
     29 </head>
     30 <body>
     31  <div id="above-top">Above top</div>
     32  <div id="below-bottom">Far bottom</div>
     33 </body>
     34 </html>