HTML删除a标签(超链接)下划线

// html中
<a href="#">这是一个a标签</a>


// css 中 最好是全局可以访问到的的css,和index.html一个级别
// 删除a标签的下划线
a:link,a:visited{
 text-decoration:none;  
}

// 删除鼠标放上去时的下划线
a:hover{
 text-decoration:underline;  
}

猜你喜欢

转载自blog.csdn.net/strong90/article/details/100041668