Html-Css-a标签的使用

 

 

a标签去掉下划线

a{
text-decoration:none;
}
或者把这个属性分别加到a标签下,
a:link{
text-decoration:none;
}
a:visited{
text-decoration:none;
}
a:hover{
text-decoration:none;
}
a:active{
text-decoration:none;
}

 可以根据自己的需要来选择其中的一部分



posted @ 2015-05-24 10:54  243573295  阅读(580)  评论(0编辑  收藏  举报