tor-browser

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

clip-text-text-decorations.html (698B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>background-clip: text shows text decorations</title>
      4 <link rel="match" href="clip-text-text-decorations-ref.html">
      5 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text">
      6 <style>
      7    .test {
      8        line-height: 2em;
      9        font-size: 40px;
     10        color: transparent;
     11        background-color: green;
     12        background-clip: text;
     13        text-decoration-thickness: 20px;
     14    }
     15 </style>
     16 <body>
     17    <div class="test" style="text-decoration: underline">AAAA</div>
     18    <div class="test" style="text-decoration: line-through">AAAA</div>
     19    <div class="test" style="text-decoration: overline">AAAA</div>
     20 </body>