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