HTML/CSS/CSS Attributes and Javascript Style Properties/active

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

"active" Example

   <source lang="html4strict">
   

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

Press tab key to bring the link into focus.

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


     </source>