tor-browser

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

background-clip-text-2-ref.html (533B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>background-clip: text reference</title>
      5    <style>
      6      div.out {
      7        width: 500px;
      8        height: 300px;
      9        margin: 0px;
     10        color: white;
     11        font-size: 50px;
     12        font-family: serif;
     13        text-shadow: 0px 60px 5px red;
     14        -moz-osx-font-smoothing: grayscale;
     15      }
     16    </style>
     17  </head>
     18  <body style="margin: 0px;">
     19    <div class="out">
     20      Text Shadow
     21      <div style="display:inline-block; width:0px; height:100px;"/>
     22    </div>
     23  </body>
     24 </html>