為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Does userContent.css require a header? knowledge base doesn't say

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

more options

Hi,

Since many User Styles aren't working, I'm using userChrome.css, and I'm trying to use userContent.css. It's not working.

http://kb.mozillazine.org/index.php?title=UserContent.css&printable=yes doesn't explain how to write userContent.css to get it to work. It asks people to download a zip file instead of explaining how to write the thing.

http://kb.mozillazine.org/Editing_configuration/Manual_editing doesn't explain it either

http://kb.mozillazine.org/Editing_configuration/Troubleshooting doesn't explain it either

If it does require a header, what is that header? I've used the same header as for userChrome:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

Hi, Since many User Styles aren't working, I'm using userChrome.css, and I'm trying to use userContent.css. It's not working. http://kb.mozillazine.org/index.php?title=UserContent.css&printable=yes doesn't explain how to write userContent.css to get it to work. It asks people to download a zip file instead of explaining how to write the thing. http://kb.mozillazine.org/Editing_configuration/Manual_editing doesn't explain it either http://kb.mozillazine.org/Editing_configuration/Troubleshooting doesn't explain it either If it does require a header, what is that header? I've used the same header as for userChrome: @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

所有回覆 (2)

more options

Don't use the "XUL" header in userContent.css -- XUL is a language used only in the user interface.

(I don't use it in userChrome.css either, but it's slightly controversial. https://www.userchrome.org/adding-style-recipes-userchrome-css....)

You can optionally use an HTML namespace header in userContent.css, but it shouldn't make any difference. There must be some other issue.

  • Name -- as with userChrome.css, the file name of userContent.css must match exactly
  • Location -- same chrome folder as userChrome.css

Now, as for the specific user styles, if they don't work in Stylus perhaps they just don't work??

The only reason to use a userContent.css file instead of Stylus, in my opinion, is to modify internal Firefox pages like the Add-ons page or new tab page. For regular web pages, it's easier to use Stylus.

more options

userChrome.css is for making changes to the Firefox user interface. For some (html namespace) elements you sometimes need to override the default XUL name space (*|<element>). userContent.css is for styling web pages and doesn't need a @namespace header or it would be the default HTML namespace.

@namespace url(http://www.w3.org/1999/xhtml);

Both files support @-moz-document rules to limit the rules to a specific domain or URL.