tor-browser

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

text-shadow-on-selection-2-ref.html (350B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style type="text/css">
      5 body {
      6  background: white;
      7  color: black;
      8  font-size: 24px;
      9 }
     10 div {
     11  background: white;
     12  color: blue;
     13  text-shadow: red 2px 2px 0px;
     14 }
     15 span {
     16  background: yellow;
     17  color: white;
     18  text-shadow: none;
     19 }
     20 </style>
     21 </head>
     22 <body>
     23 <div>
     24 hello <span>selected</span> world
     25 </div>
     26 </body>
     27 </html>