zl程序教程

您现在的位置是:首页 >  前端

当前栏目

Html-Css-a标签的使用

HTMLCSS 标签 使用
2023-09-27 14:20:52 时间

 

 

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;
}

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