tor-browser

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

variables-visited.html (163B)


      1 <!doctype html>
      2 <style>
      3  a {
      4    --foo: green;
      5  }
      6 
      7  :visited {
      8    --foo: red;
      9    color: var(--foo);
     10  }
     11 </style>
     12 <a href="visited-page.html">Which color?</a>