当前位置:  开发笔记 > 编程语言 > 正文

访问过的链接颜色变化

如何解决《访问过的链接颜色变化》经验,为你挑选了1个好方法。

我有这门课:

.news_item_info 
{
    font-size: .7em; 
    color:#000000; 
    text-indent: 30px;
    a:link { color: #000000; }
    a:visited { color: #000000; }   
}

这里有代码:


问题是,在我访问用户配置文件后,它显示为灰色,我想保持黑色.

如果有人知道答案我会很感激.



1> Quintin Robi..:

发布的CSS无效,您必须通过级联定义来限定样式.尝试取消嵌套链接定义,如下所示:

.news_item_info 
{
    font-size: .7em; 
    color:#000000; 
    text-indent: 30px;       
}

.news_item_info a:link { color: #000000; }
.news_item_info a:visited { color: #000000; }

推荐阅读
雨天是最美
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有