:visited Description:
The :visited pseudo-class matches visited links.
:visited Web Browser Support:
: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.

