blob: 4720e57eae37b60c8422ffa6aa11ba379205df63 (
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="unvisited-page.html">
<div>
<span class="green">Should be green</span>
</div>
</a>
|