超连接鼠标通过 点击 点击时 点击后 字体颜色样式

/*未访问的颜色*/
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;
}it

相关文章
相关标签/搜索