:visited Description:
The :visited pseudo-class matches visited links.
:visited Web Browser Support:
- Netscape 4, 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 3, 4, 5, 6
- Opera 3, 4, 5, 6, 7, 8
- Safari 1
- CSS 1
:visited in CSS Versions:
:visited Examples:
Change the color of all visited links
<style>
:visited { color: #f00; }
</style>
:visited Special Notes:
- User agents determine how long to leave a link as "visited".
- Most browsers only support this pseudo-class on the a element.

