给需要添加下划线的超链接添加单独样式或者一个class,包含关键代码:text-decoration:underline。
实例演示如下:
1、设计一个HTMl页面,放入一些a标签超链接:
2、给a便签全部取消下划线:
3、此时的页面展示如下:
4、在样式中添加一个class,去掉下划线:
5、演示:给一些a便签添加第四步的class:
6、刷新页面,此时效果如下:
给其中一种定义个类,通过类选择器控制是否有下划线这一样式。类选择器允许以一种独立于文档元素的方式来指定样式。
语法:
E.myclass { sRules }
说明:
以class属性包含myclass的E对象作为选择符。
下划线通过设置text-decoration属性来实现。
语法:
text-decoration:<' text-decoration-line '>|| <' text-decoration-style '>|| <' text-decoration-color '>
默认值:看每个独立属性
适用于:所有元素
继承性:无
动画性:看每个独立属性
计算值:看每个独立属性
相关属性:<' text-decoration-skip '>|| <' text-underline-position '>
取值:
<' text-decoration-line '>:
指定文本装饰的种类。相当于CSS2.1的 <' text-decoration '>属性,可取值:none | underline | overline | line-through | blink
<' text-decoration-style '>:
指定文本装饰的样式。
<' text-decoration-color '>:
指定文本装饰的颜色。
用一个时间的案例来说明吧
1 代码部分
<html>
<title>北京传智播客</title>
<body>
<a href="#">我要去除超链接下划线</a>
</body>
</html>
2 以上代码在浏览器显示的效果 , 在浏览器段看到超链接是有下划线的,之后的操作咱们就是要去除下划线
3 去除下滑下 的代码 在a标签上 加上 style="text-decoration:none"
4 加上 style="text-decoration:none" 之后在页面上的显示效果 如下图
下划线就去掉了