搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Why doesn't current version of Firefox handle a background image on the :visited pseudo class?

  • 1 回覆
  • 4 有這個問題
  • 2 次檢視
  • 最近回覆由 cor-el

more options

I teach a fundamental web design class using HTML and CSS. We were playing with links and I set up an example where a check mark would be displayed as a background image for the :visited pseudo class using embedded CSS. It worked on an older version of Firefox. It does not work on newer versions. It does work current versions of IE and Opera.

I've included the code I used.

I teach a fundamental web design class using HTML and CSS. We were playing with links and I set up an example where a check mark would be displayed as a background image for the :visited pseudo class using embedded CSS. It worked on an older version of Firefox. It does not work on newer versions. It does work current versions of IE and Opera. I've included the code I used.

被選擇的解決方法

That is a security measure.
You can only use very limited styles for :visited and background image is not included.

See:


a:visited {padding-left: 20px;
background-image:url(purplecheck.gif);
background-repeat:no-repeat;
text-decoration:none;}
從原來的回覆中察看解決方案 👍 1

所有回覆 (1)

more options

選擇的解決方法

That is a security measure.
You can only use very limited styles for :visited and background image is not included.

See:


a:visited {padding-left: 20px;
background-image:url(purplecheck.gif);
background-repeat:no-repeat;
text-decoration:none;}