SOURCE

console 命令行工具 X clear

                    
>
console
<br><a href="#">鼠标悬浮:例(背景变红red)</a>
<br><a href="#">鼠标按下时:例(背景变yellowgreen)</a>
<br><a href="#">已被访问:例(背景变yellow)</a>
<br><a href="#">未被访问:例(背景变yellow)</a>
/*  
    爱恨准则 LOVE HATE(l v h a)
    
    link,visited,hover,active

 */
a:link{background: blue;}
a:visited{background: yellow;}
a:hover{background: red;}
a:active{background: yellowgreen;}