a标签伪元素选择器

 

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

 

posted @ 2017-06-19 15:10  低头捡到蛋  阅读(1802)  评论(0编辑  收藏  举报