tor-browser

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

1752624-ref.html (468B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 #offset {
      5  position: absolute;
      6  left: 10px;
      7  top: -150px;
      8  width: 100px;
      9  height: 100px;
     10  border: 1px solid red;
     11 }
     12 #outline-box {
     13  width: 100px;
     14  height: 100px;
     15  position: relative;
     16 }
     17 #overflow-box {
     18  border: 4px solid blue;
     19  width: 10px;
     20  height: 400px;
     21  left: 10px;
     22  top: 100px;
     23  position: absolute;
     24 }
     25 </style>
     26 <body>
     27 <div id="offset">
     28 <div id="outline-box">
     29 <div id="overflow-box">
     30 </div>
     31 </div>
     32 </div>
     33 </body>
     34 </html>