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

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



相关文章:

  • 2021-04-12
  • 2021-12-29
  • 2021-12-12
  • 2021-12-12
  • 2021-11-17
  • 2021-05-31
猜你喜欢
  • 2022-01-29
  • 2021-06-23
  • 2022-12-23
  • 2021-12-12
  • 2021-12-12
  • 2021-12-09
  • 2021-12-10
相关资源
相似解决方案