tor-browser

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

color-transparent-002.html (232B)


      1 <!doctype html>
      2 <title>color: transparent should not make other text below it not show up</title>
      3 <style>
      4  p {
      5    color: transparent;
      6  }
      7  span {
      8    color: red;
      9  }
     10 </style>
     11 <p>
     12  Only the <span>span</span> should show up.
     13 </p>