tor-browser

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

anchor-pos-2-ref.html (332B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 .anchor1 {
      5  position: absolute;
      6  width: 50px;
      7  height: 50px;
      8  background: blue;
      9  left: 50px;
     10  top: 0;
     11 }
     12 .anchored {
     13  position: absolute;
     14  width: 50px;
     15  height: 50px;
     16  background: yellow;
     17  left: 100px;
     18  top: 50px;
     19 }
     20 </style>
     21 <div class="anchor1"></div>
     22 <div class="anchored"></div>
     23 </html>