css超链接下划线与超链接字体颜色设置与取消

发布时间:2020-06-28编辑:脚本学堂
本文介绍了css设置与取消超链接下划线,以及超链接字体颜色的设置方法,需要的朋友参考下。

要用css控制超链接字体颜色与下划线,很简单,只需要在head下加入css控制超链接的一些属性:
 

复制代码 代码示例:
<head>   
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
<title>test</title> 
<style type="text/css"> 
   a:link { 
   color: #000000; 
   text-decoration: none; 
   } 
   a:visited { 
   text-decoration: none; 
   color: #000000; 
   } 
   a:hover { 
   text-decoration: underline; 
   color: #FF0000; 
   } 
   a:active { 
   text-decoration: none; 
   color: #FF0000; 

</style> 
</head>