a{
  color: black;
 }
  /*未访问的链接*/
  a:link{ 
    color: red;
  }
  /*访问过的链接*/
  a:visited{ 
    color: green;
  }
  /*鼠标经过时*/
  a:hover{ 
    color: yellow;
  }
  /*在鼠标点击的同时*/
  a:active{ 
    color: teal; 
  }

 

相关文章:

  • 2021-08-22
  • 2021-11-13
  • 2022-02-01
  • 2021-12-07
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2021-11-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案