HTML CSS Reference/CSS Attributes and Javascript Style Properties/hover

Материал из Web эксперт
Перейти к: навигация, поиск

"hover" Example

    
<html>
<head>
<style>
a:hover { font-weight:bold; color:red }
</style>
</head>
<body>
<p>Move the mouse over the following link.</p>
<a href="http://www.wbex.ru" target="_blank">
wbex.ru home page link
</a>
</body>
</html>



"hover" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |<a>                                                           |
+----------------+--------------------------------------------------------------+



"hover" Syntax and Note

Note:
    
Sets the style of the <a> when mouse over.