tor-browser

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

clip-path-svg-text-css-ref.html (324B)


      1 <!doctype html>
      2 <meta name="flags" content="ahem">
      3 <link rel="stylesheet" href="/fonts/ahem.css" />
      4 <style>
      5 text {
      6  font: 50px/1 Ahem;
      7 }
      8 </style>
      9 <svg>
     10  <defs>
     11    <clipPath id="c">
     12      <text x="30" y="50">Hello</text>
     13    </clipPath>
     14  </defs>
     15  <rect width="200" height="100" fill="green" clip-path="url(#c)"/>
     16 </svg>