tor-browser

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

inline-block-frag-text-1.html (597B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3 <head>
      4    <style>
      5    @page {
      6        size: 5in 3in;
      7        margin: 0;
      8    }
      9 
     10    @font-face {
     11      font-family: Ahem;
     12      src: url(../fonts/Ahem.ttf);
     13    }
     14 
     15    * {
     16        margin: 0;
     17        padding: 0;
     18    }
     19 
     20    .text {
     21        display: inline-block;
     22        border: 2px solid;
     23        background-color: grey;
     24        width: 220px;
     25        font: 50px/1 Ahem;
     26    }
     27 
     28    .pos {
     29        position: absolute;
     30        top: calc(3in - 25px);
     31        left: 0px;
     32    }
     33    </style>
     34 </head>
     35 <body>
     36    <div class="text pos">XpXp</div>
     37 </body>
     38 </html>