Web前端-15-css-伪类元素

css伪类元素

a:link{

color:red;/*未访问的链接*/

}

 

a:hover{

color:green;/*鼠标滑过链接*/

}

 

a:active{

color:pink;/*鼠标点击的效果*/

}

 

a:visited{

color:blue;/*访问过的链接*/

}

 




    
    css 伪类元素
    


    百度一下

你可能感兴趣的:(Web前端基础)