超链接鼠标经过 点击 点击时 点击后 字体颜色样式

/*未访问的颜色*/
a:link
{
    color: #0066CC;
    text-decoration: none;
}
/*点击后的颜色*/
a:visited
{
    color: red;
    text-decoration: none;
}
/*鼠标悬停的颜色*/
a:hover
{
    color: #CC0000;
    text-decoration: none;
}
/*鼠标点中激活的颜色*/
a:active
{
    color: blue;
    text-decoration: none;
}

posted on 2014-04-03 16:55  锥子  阅读(671)  评论(0编辑  收藏  举报