tor-browser

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

clip-text-dynamic-2-ref.html (373B)


      1 <!doctype html>
      2 <title>CSS Test Reference</title>
      3 <style>
      4  .text {
      5    background-color: blue;
      6    color: transparent;
      7    font: 50px/1 monospace;
      8    background-clip: text;
      9    height: 200px;
     10  }
     11  .prev {
     12    height: 100px;
     13  }
     14  p {
     15    color: transparent;
     16  }
     17 </style>
     18 <div class="text">
     19  <div class="prev"></div>
     20  <div class="inner">
     21    <p>XxX</p>
     22  </div>
     23 </div>