张大晴 2013-01-10
下面我们做一个这样的链接:未被点击时超链接文字无下划线,显示为蓝色;当鼠标在链接上时有下划线,链接文字显示为红色;当点击链接后,链接无下划线,显示为绿色。
实现方法很简单,在源代码的<head>和<head>之间加上如下的CSS语法控制:
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { text-decoration:blink} a:hover { text-decoration:underline;color: red} a:visited { text-decoration: none;color: green} --> </style>
其中:
a:link指正常的未被访问过的链接;
a:active指正在点的链接;
a:hover指鼠标在链接上;
a:visited指已经访问过的链接;
text-decoration是文字修饰效果的意思;
none参数表示超链接文字不显示下划线;
underline参数表示超链接的文字有下划线
-------------------------------------------------------------------------
演示:让网页中的链接去掉下划线
<style type="text/css"> <!-- A { text-decoration: none} --> </style>
将代码插入在<head></head>之间.<title>之前即可
-------------------------------------------------------------------------
使用CSS实现链接的虚线下划线\普通下划线效果
a{
color:#3399FF;
font-weight:Normal;/*CSS字体效果普通可以改成bold粗体如果去除此行那么默认是不显示下划线的*/
text-decoration:none;/*CSS下划线效果:无下划线*/
}
a:hover{
color:#4499EE;
text-decoration:none;/*CSS下划线效果:无下划线*/
border-bottom:1px#0099CCdotted/*CSS加一个只有下边的框边框为虚线*/
}
a{}:是用来控制连接的效果
a:hover{}:是用来控制鼠标移上去的效果。