0 / 60 seg.

Suppose you have this HTML and CSS code snippet. What color will the text of the link be after it is clicked on?

<a class="special" href="#">Special Link</a>
a { color: blue; }
a:visited { color: green; }
a.special:active { color: orange; }