关于鼠标点击,会有几个阶段的情况

指正常的未被访问过的链接

1 a:link{
2   text-decoration:none; 
3 }

 

指已经访问过的链接

1 a:visited{
2   text-decoration:none; 
3 }

 

指鼠标在链接上悬停

1 a:hover{
2   text-decoration:none;
3 }

 

指正在点击(未松开)的链接

1 a:active{
2   text-decoration:none;
3 }

在这几种情况下根据需求添加颜色即可!

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2022-02-08
  • 2021-12-19
  • 2021-04-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-16
相关资源
相似解决方案