color-on-visited-text-1.html (547B)
1 <!DOCTYPE html> 2 <style> 3 a { 4 display: block; 5 text-decoration: none; 6 } 7 :link { 8 color: blue; 9 } 10 :visited { 11 color: purple; 12 } 13 .outer::first-line { 14 color: green; 15 } 16 </style> 17 <a class="outer" href="visited-page.html">Visited</a> 18 <a class="outer" href="visited-page.html"><span>Visited with span</span></a> 19 <a class="outer" href="visited-page.html"><a href="unvisited-page.html">Visited with inner unvisited</a></a> 20 <a class="outer" href="visited-page.html"><a href="visited-page.html">Visited with inner visited</a></a>