超链接css的一个疑问
我不想让访问过的链接和没访问过的链接有区别,所以定义css的时候就把visited和link设成一样的,如下:
a:link {
color: #000000;
text-decoration: none;
font-size: 12px;
}
a:hover {
color: #FF0000;
text-decoration: underline;
font-size: 12px;
}
a:visited {
font-size: 12px;
color: #000000;
text-decoration: none;
}
然而运行后发现访问过的链接,鼠标移上去以后就没有hover设置的效果了,我把a:visited全部去掉也不行。谁能帮我解决一下