a:visited { text-decoration: none; decoration: none; }
访问链接后,颜色会变化.
这个页面右侧底部的“浏览所有问题”链接正在发生:http://www.problemio.com
谢谢!
要将访问颜色设置为默认值,请尝试:
a { color: blue; }
要么
a { text-decoration: none; } a:link,a:visited { color: blue; } a:hover { color: red; }