tor-browser

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

inline-block-frag-offset-2-ref.html (619B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3 <head>
      4    <style>
      5    @page {
      6        size: 5in 3in;
      7        margin: 0.5in;
      8    }
      9 
     10    * {
     11        margin: 0;
     12    }
     13 
     14    .green {
     15        display: block;
     16        width: 1in;
     17        height: 3in;
     18        background-color: green;
     19        transform: translateX(0.5in);
     20    }
     21 
     22    .blue {
     23        width: 1in;
     24        height: 1in;
     25        background-color: blue;
     26        position: absolute;
     27        top: 1.5in;
     28        transform: translateX(0.5in);
     29        z-index: 1;
     30    }
     31    </style>
     32 </head>
     33 <body>
     34    <div class="green"></div>
     35    <div class="blue"></div>
     36 </body>
     37 </html>