设置text-decoration属性的值为none就可去掉超链接的默认下划线。text-decoration属性规定添加到文本的修饰,而none值定义标准的文本,设置该值即可去掉下划线。
属性值:
none:无装饰,通常对html下划线标签去掉下划线样式
underline:下划线样式
line-through:删除线样式-贯穿线样式
overline:上划线样式
注释:修饰的颜色由 "color" 属性设置。
说明
这个属性允许对文本设置某种效果,如加下划线。如果后代元素没有自己的装饰,祖先元素上设置的装饰会“延伸”到后代元素中。不要求用户代理支持 blink。
示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.demo a{
text-decoration: none
}
</style>
</head>
<body>
<p>
<a href="#">这是一个正常链接,有下划线!</a>
</p>
<p class="demo">
<a href="#">去掉下划线的链接!</a>
</p>
</body>
</html>
class{text-decoration:none}class改成你不要下划线样式的名字就行,如果用ID的 #id
a, a:hover, a:focus { text-decoration: nonecolor: inherit} //初始化所有情况下a不要下划线。
下面是关于text-decoration下划线CSS单词值参数:
none : 无装饰
blink : 闪烁
underline : 下划线
line-through : 贯穿线
overline : 上划线
text-decoration:none 无装饰,通常对html下划线标签去掉下划线样式
text-decoration:underline 下划线样式
text-decoration:line-through 删除线样式-贯穿线样式
text-decoration:overline 上划线样式