:active Description:
The :active pseudo-class matches active links as they're clicked on.
:active 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
:active in CSS Versions:
:active Examples:
Set the active color of all links on a page
<style>
:active { color: #f00; }
</style>
:active Special Notes:
- Most browsers only support this pseudo-class on the a element.

