:link Description:
The :link pseudo-class matches unvisited links.
:link 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
:link in CSS Versions:
:link Examples:
Set the color of all unvisited links on a page
<style>
:link { color: #f00; }
</style>
:link Special Notes:
- This is different from styling simply the a element, as the :link pseudo-class can refer to any element that might be linked.
- Most browsers only support this pseudo-class on the a element.

