1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 去掉a标签下划线

去掉a标签下划线

时间:2019-01-31 08:30:30

相关推荐

去掉a标签下划线

<a href="#" style="text-decoration:none;">去掉下划线</a>

还有更加详细的设置。

a:link{text-decoration:none; /* 指正常的未被访问过的链接*/

}a:visited{text-decoration:none; /*指已经访问过的链接*/

}a:hover{text-decoration:none;/*指鼠标在链接*/}a:active{text-decoration:none;/* 指正在点的链接*/

}

4

可以试试下面的这段代码,比较以下就知道A标签的用法了。

<style type="text/css">a:link{text-decoration: none;color: red /* 指正常的未被访问过的链接*/}a:visited{text-decoration:none; /*指已经访问过的链接*/}a:hover{text-decoration:underline; font-size:50px;color:blue/*指鼠标在链接*/}a:active{text-decoration:none;/* 指正在点的链接*/ }</style> <a href="">这里是A标签</a>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。