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

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

"hover" Example

   <source lang="html4strict">
   

<html> <head> <style> a:hover { font-weight:bold; color:red } </style> </head> <body>

Move the mouse over the following link.

<a href="http://www.wbex.ru" target="_blank"> wbex.ru home page link </a> </body> </html>


     </source>
   
  


"hover" is applied to

   <source lang="html4strict">

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

     </source>
   
  


"hover" Syntax and Note

   <source lang="html4strict">

Note:

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


     </source>