:hover Description:
The :hover pseudo-class matches elements as you mouse over them.
:hover Web Browser Support:
:hover in CSS Versions:
:hover Examples:
Set the hover color of all elements on a page
<style>
:hover { color: #f00; }
</style>
:hover Special Notes:
- Most browsers only support this pseudo-class on the a element.
More :hover Information:

