a:访问过不在Mozilla或Firefox中工作 [英] a:visited not working in Mozilla or Firefox

查看:73
本文介绍了a:访问过不在Mozilla或Firefox中工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我搜索了这个主题。找到了其他人提到它,但没有

解决方案。我似乎无法在PC上的Mozilla或Firefox中看到以不同的

颜色显示的访问链接。它在IE中运行良好。我的CSS是

复制如下。任何帮助将不胜感激。


谢谢


DM

td#footer a:link {

border-bottom:solid 1px #FFFFFF!important;

颜色:#FFFFFF!important;

text-decoration:none!important;

}

td#footer a:link:active,

td#footer a:visited:active {

border -bottom:solid 1px #FFFFFF!important;

颜色:#FFFFFF!important;

text-decoration:none!important;

}

td#footer a:已访问{

border-bottom:solid 1px#FFCC66!important;

颜色:#FFCC66!important;

text-decoration:none!important;

}

td#footer a:link:hover,

td #footer a:visited:hover {

border-bottom:none!important;

颜色:#00FF33!important;

text-decoration :none!important;

}

I searched on this topic. Found others who mentioned it, but no
solution. I can''t seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC. It works fine in IE. My CSS is
copied below. Any help would be greatly appreciated.

Thanks

DM
td#footer a:link{
border-bottom: solid 1px #FFFFFF !important;
color: #FFFFFF !important;
text-decoration: none !important;
}
td#footer a:link:active,
td#footer a:visited:active{
border-bottom: solid 1px #FFFFFF !important;
color: #FFFFFF !important;
text-decoration: none !important;
}
td#footer a:visited{
border-bottom: solid 1px #FFCC66 !important;
color: #FFCC66 !important;
text-decoration: none !important;
}
td#footer a:link:hover,
td#footer a:visited:hover{
border-bottom: none !important;
color: #00FF33 !important;
text-decoration: none !important;
}

推荐答案

DM skrev:
DM skrev:
我灼烧关于这个话题。找到了提到它的其他人,但没有解决方案。我似乎无法访问在Mozilla或Firefox上以不同颜色显示的链接。
I searched on this topic. Found others who mentioned it, but no
solution. I can''t seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC.




订单必须为

链接

访问

hover

活跃

http://www.w3.org/TR/CSS21/selector.html#x35

-

Knud

Topposter du svar,s? ryger du p? min ignoreringsliste。

Svar under det du citerer og citer kun det du svarer p? - tak。
http://usenet.dk/netikette/citatteknik.html


Knud Gert Ellentoft写道:
Knud Gert Ellentoft wrote:
DM skrev:

DM skrev:

我搜索了这个主题。找到了提到它的其他人,但没有解决方案。我似乎无法访问在Mozilla或Firefox上以不同颜色显示的链接。
I searched on this topic. Found others who mentioned it, but no
solution. I can''t seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC.



订单必须是
链接<浏览了
hover
活跃

http://www.w3.org/TR/CSS21/selector.html#x35




我试过改变它(见下面的代码),但这也不起作用。下面的代码

在我的组织的Mozilla或Firefox中不起作用。它在IE中运行良好。


我也注意到在 www.yahoo.com www.cnn.com www.taxes.ca.gov 访问

链接更改颜色IE 6,但不适用于PC的Mozilla 1.7.3或Firefox 1.0.2。


如果有人能够对此有所了解,我将不胜感激。


td#footer a:link {

border-bottom:solid 1px #FFFFFF;

color:#FFFFFF;

text-decoration:none;

}

td#footer a:visited {

border-bottom:solid 1px#FFCC66;

颜色:#FFCC66;

text-decoration:none;

}

td#footer a:link:悬停,

td#footer a:visited:hover {

border-bottom:none;

颜色:#00FF33;

text-decoration:none;

}

td#foote ra:link:active,

td#footer a:visited:active {

border-bottom:solid 1px #FFFFFF;

color: #FFFFFF;

text-decoration:none;

}



I tried changing it (see code below), but that doesn''t work either. The code
below does not work in Mozilla or Firefox at my organization. It works fine in IE.

I''ve also noticed that on www.yahoo.com, www.cnn.com, www.taxes.ca.gov visited
links change color in IE 6, but not in Mozilla 1.7.3 or Firefox 1.0.2 for the PC.

I would be grateful to anyone who can shed some light on this.

td#footer a:link{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}
td#footer a:visited{
border-bottom: solid 1px #FFCC66;
color: #FFCC66;
text-decoration: none;
}
td#footer a:link:hover,
td#footer a:visited:hover{
border-bottom: none;
color: #00FF33;
text-decoration: none;
}
td#footer a:link:active,
td#footer a:visited:active{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}


2005年4月6日星期三14:19 :39 -0700,DM< sp ***** @ devnu11.com>写道:
On Wed, 06 Apr 2005 14:19:39 -0700, DM <sp*****@devnu11.com> wrote:
订单必须是
链接
访问
悬停
活跃

http://www.w3.org/ TR / CSS21 / selector.html#x35



我尝试更改它(请参阅下面的代码),但这也不起作用。



I tried changing it (see code below), but that doesn''t work either.




订单中最重要的部分是将鼠标悬停在访问下方。

正如您最初拥有它一样,它仍然不会导致您的问题/>
描述。


你能在整个页面上发布一个URL吗?

并不总是可以单独调试片段。



The most important part of the order is to place hover below visited.
As you originally had it, it still wouldn''t cause the problem you
describe.

Can you post a URL to the whole page ? It''s not always possible to
debug fragments in isolation.


这篇关于a:访问过不在Mozilla或Firefox中工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆