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

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

"visited" Example

   <source lang="html4strict">
   

<html> <head> <style> a:visited { font-size:75%; color:red } </style> </head> <body> <a href="http://www.wbex.ru" target="_blank">wbex.ru page link</a> </body> </html>


     </source>
   
  


"visited" is applied to

   <source lang="html4strict">

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

     </source>
   
  


"visited" Syntax and Note

   <source lang="html4strict">

Note: Sets the style of <a> after visiting.


     </source>