tor-browser

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

clip-text-on-body-not-propagated-to-root.html (513B)


      1 <!DOCTYPE html>
      2 <title>background-clip:text on the root</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text">
      4 <link rel="stylesheet" href="/fonts/ahem.css">
      5 <link rel="match" href="clip-text-on-body-not-propagated-to-root-ref.html">
      6 <style>
      7 html {
      8  background-color: white;
      9  font-size: 24px;
     10  color: transparent;
     11  font-family: Ahem;
     12 }
     13 body {
     14  background-color: green;
     15  background-clip: text;
     16 }
     17 </style>
     18 
     19 This text should be green<br>
     20 on a white background.