tor-browser

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

all-prop-initial-visited.html (342B)


      1 <!doctype html>
      2 <title>CSS Cascade: Apply all:initial to a visited link overriding with a color</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-cascade/#initial">
      4 <link rel="match" href="all-prop-initial-visited-ref.html">
      5 <style>
      6  a { all: initial }
      7  a:visited { color: green }
      8 </style>
      9 <a href="">This text must be green.</a>