天天看點

HTML删除a标簽(超連結)下劃線

// html中
<a href="#" target="_blank" rel="external nofollow" >這是一個a标簽</a>


// css 中 最好是全局可以通路到的的css,和index.html一個級别
// 删除a标簽的下劃線
a:link,a:visited{
 text-decoration:none;  
}

// 删除滑鼠放上去時的下劃線
a:hover{
 text-decoration:underline;  
}