tor-browser

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

custom-highlight-painting-text-shadow-ref.html (262B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <style>
      4    .highlighted {
      5      background-color: yellow;
      6      color: blue;
      7      text-shadow: 5px 10px rgba(0, 255, 0, 0.5);
      8    }
      9 </style>
     10 <body>
     11  <span class="highlighted">One two </span><span>three…</span>
     12 </body>