blob: cf53066d38da76e9e4fdb5cdd5ed03654d93111b (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<style>
a { text-decoration: none; color: initial; display: block; margin: 2px; }
.green { color: green; }
</style>
<a href="visited-page.html">
<div>
<span class="green">Should be green</span>
</div>
</a>
|