CSS---伪类

a:link{      //未访问的连接样式
   color:black;
   text-derection:none;
   font-size:14px; 
}   
a:visited{      //访问过的连接样式
   color:blue;
   text-derection:none;
   font-size:14px; 
}
a:hover{      //鼠标移动到链接上的样式
   color:orange;
   text-derection:underline;
   font-size:14px; 
}
a:active{      //单击连接的那一刻的样式
   color:red;
   text-derection:none;
   font-size:16px;  
}
原文地址:https://www.cnblogs.com/wells33373/p/8133924.html