I styled the <a>
element as follows
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */
In the following using Firefox, Opera, and Chrome
<a href="mailto:[email protected]" >send email</a>
All the colors act as expected except that it is never marked as visited. Is there someway to make it visited?
This is one place IE seems to excel as it does get marked as visited!