<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>
none参数表示超链接文字不显示下划线;如下列代码所示:
<style type="text/css">
<!--
A { text-decoration: none}
-->
</style>
将代码插入拆唤在<head></head>之间.<title>之前即可实现
扩展资料
HTML,即超文本标记语言,是迄今为止网络上应用最为广泛的语言,也是构成网页文档的主要语言。
HTML文本是由HTML命令组成的描述性文本,HTML命令可以说明文字、图形、动画、声音、表格、链接等。HTML的结构包括头部(Head)、主体(Body)两大部分,其中头部描述浏览器所需的信息,而主体则包含所要说明的具体内容。
a:link 指正常的未被访问过的链接;
a:active 指正在点的链接;缓滚
a:hover 指鼠标在链接上;
a:visited 指已经访问过的链接;
text-decoration是文字修饰效果的意思;
none参数表示超链接文字不显示下划线;
underline参数表示超链接的文字有旅哪凯下划线。
参考资料
html代码-百度百科
就这下罩册清物前面的小例子完全解决了:
<a href="" style="color:#000; text-decoration:none;">你好百度姿瞎啊</a>
<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 #0099CC dotted /*CSS加一个只有下边的框 边框为虚线*/
}
a{ } :是用来控制连接的效果
a:hover{ }:是用来控制鼠标移上去的效果
先选中带有下划线超链接的文字和颜色的html代码,鼠标右击选择“取消超链接”命令