We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜尋 Mozilla 技術支援網站

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

了解更多

links are not underlined

  • 2 回覆
  • 42 有這個問題
  • 1 次檢視
  • 最近回覆由 greenhome

more options

I've been creating a new website, using css for changing the appearance of my links and one of the things I want is for the links to always be underlined.

The links appear underlined in Safari and on other people's computers which use IE, but not in Firefox.

Apart from the colours used, this is the same css code as I used in my other website, where I don't have that problem at all.

I've been creating a new website, using css for changing the appearance of my links and one of the things I want is for the links to always be underlined. The links appear underlined in Safari and on other people's computers which use IE, but not in Firefox. Apart from the colours used, this is the same css code as I used in my other website, where I don't have that problem at all.

被選擇的解決方法

You do have a few stylesheets that specify what to do with links. The last stylesheet sets visited links to text-decoration:none, so links that have been visited are no longer underlined.

<style type="text/css">a:link { color: #3366cc; text-decoration: underline }a:visited { color: 660000; text-decoration: none }a:hover { color: #ffcc66; text-decoration: underline }a:active { color: #ff6600; text-decoration: none }</style></p><p><style type="text/css">h1,h2,h3,h4 { color: #660000 }</style>

See also Firefox > Preferences > Content : Fonts & Colors > Colors: Underline links

從原來的回覆中察看解決方案 👍 3

所有回覆 (2)

more options

選擇的解決方法

You do have a few stylesheets that specify what to do with links. The last stylesheet sets visited links to text-decoration:none, so links that have been visited are no longer underlined.

<style type="text/css">a:link { color: #3366cc; text-decoration: underline }a:visited { color: 660000; text-decoration: none }a:hover { color: #ffcc66; text-decoration: underline }a:active { color: #ff6600; text-decoration: none }</style></p><p><style type="text/css">h1,h2,h3,h4 { color: #660000 }</style>

See also Firefox > Preferences > Content : Fonts & Colors > Colors: Underline links

more options

Thank you for solving this mystery! That single example of an old css code was in a right column, the only place I hadn't checked, and apparently Firefox for Mac gives prioriry to that column over the main text area, whereas Safari gives priority to the main content area.

Gina