tor-browser

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

mpadded-013-ref.html (739B)


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