tor-browser

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

mpadded-012-ref.html (640B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Test mpadded</title>
      5    <style type="text/css">
      6      div#square1 {
      7          position: absolute;
      8          width: 100px;
      9          height: 100px;
     10          background: blue;
     11      }
     12 
     13      div#square2 {
     14          position:absolute;
     15          width: 20px;
     16          height: 20px;
     17          left: 10px;
     18          top: 55px;
     19          background: red;
     20      }
     21      /* left = lspace = 10;
     22         top = heightBig - heightSmall - voffset;
     23         top = 50 - 10 + 15 = 55px */
     24    </style>
     25  </head>
     26  <body>
     27    <div id="square1">
     28      <div id="square2">
     29      </div>
     30    </div>
     31  </body>
     32 <html>