.grid-header a:active
{
color: #696969;
text-decoration: none;
}
.grid-header a:link
{
color: #696969;
text-decoration: none;
}
.grid-header a:visited
{
color: #696969;
text-decoration: none;

解决方案 »

  1.   

    a:link{font-weight : bold ;text-decoration : none ;color : #c00 ;}
    a:visited {font-weight : bold ;text-decoration : none ;color : #c30 ;}
    a:hover {font-weight : bold ;text-decoration : underline ;color : #f60 ;}
    a:active {font-weight : bold ;text-decoration : none ;color : #90 ;} 
    记住它们的顺序是“LVHA”。
    .grid-header a:active  //激活时的样式
    {
    color: #696969;  颜色
    text-decoration: none;下划线:无
    }
    .grid-header a:link //一般情况
    {
    color: #696969;
    text-decoration: none;
    }
    .grid-header a:visited //访问过
    {
    color: #696969;
    text-decoration: none;对了,这是。net区