tor-browser

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

background-clip-text-1b.html (614B)


      1 <!doctype HTML>
      2 <html>
      3  <head>
      4    <title>background-clip: text</title>
      5    <style>
      6      div.out {
      7        width: 500px;
      8        height: 300px;
      9        margin: 0px;
     10        background-image: linear-gradient(green, green);
     11        background-clip: text;
     12        color: transparent;
     13        font-size: 100px;
     14        font-family: serif;
     15        -moz-osx-font-smoothing: grayscale;
     16      }
     17    </style>
     18  </head>
     19  <body style="margin: 0px;">
     20    <div class="out">
     21      <p style="display:inline-block;">TEXT clip</p>
     22      <div style="display:inline-block; width:0px; height:200px;"/>
     23    </div>
     24  </body>
     25 </html>