:active Description:
The :active pseudo-class matches active links as they're clicked on.
:active Web Browser Support:
: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.
More :active Information:

