搜尋 Mozilla 技術支援網站

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

Learn More

No option to Uncheck Underline Links

  • 7 回覆
  • 16 有這個問題
  • 409 次檢視
  • 最近回覆由 cor-el

more options

Just updated to the latest firefox version 119, and noticed that the url links are now all underlined again. Checked the support page that says it can be undone in settings, but when I opened up to the said setting page, there's no option to uncheck underline links. Where else can underline links be disabled?

Just updated to the latest firefox version 119, and noticed that the url links are now all underlined again. Checked the support page that says it can be undone in settings, but when I opened up to the said setting page, there's no option to uncheck underline links. Where else can underline links be disabled?
附加的畫面擷圖

被選擇的解決方法

It is still there in ua.css

:any-link {
  cursor: pointer;
  text-decoration: underline;
}

You do not want to force it for all cases like SVG links.

a:any-link {
  /* We don't want SVG link to be underlined */
  text-decoration: none;
}

See also:

  • 1664278 - Feature request: “Always underline links in text” option in Firefox
從原來的回覆中察看解決方案 👍 0

所有回覆 (7)

more options

This was removed by Bug 1853323, apparently it didn't work consistently anyway.

Equivalent userContent.css:

*|*:any-link { 
  text-decoration: none; 
}
more options

選擇的解決方法

It is still there in ua.css

:any-link {
  cursor: pointer;
  text-decoration: underline;
}

You do not want to force it for all cases like SVG links.

a:any-link {
  /* We don't want SVG link to be underlined */
  text-decoration: none;
}

See also:

  • 1664278 - Feature request: “Always underline links in text” option in Firefox
more options

Thanks zeroknight and cor-el.

The solution presented by both of you solved the issue through CSS.

more options

To elaborate on cor-el's solution, for those who have no experience with the userContent.css, here is how you now change your preference to not underline links by default:

Go to "about:config" Toggle "toolkit.legacyUserProfileCustomizations.stylesheets" to "true"

Go to "about:support" Look for "Profile Folder" Click "Show in Finder" (on Mac), "Show Folder" (Windows), "Open Directory" (Linux) or "Open Containing Folder".

In that profile folder, look for "chrome" folder, create if not present

In "chrome" folder, edit or create "userContent.css" file, put this in there:

 *|*:any-link {
   text-decoration: none;
 }

Restart Firefox

由 Scarabaeus23 於 修改

more options

I need more help. Where do I find about:config? I am using MacOS 13.5.2 and Firefox 119.0.1. And why is it so hard to get rid of the underlining? The ability to disable link underlining is why I first started using Firefox many years ago. Thank you.

more options

The easiest way is to install the extension "Default links not to be underlined" made by a Firefox developer.

more options

Note that Firefox 120 will have a pref to force underlining of links and Firefox 121 exposes this pref in "Settings -> General -> Browsing: Always underline links", so make sure you do not enable this setting.