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

搜尋 Mozilla 技術支援網站

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

了解更多

Why is there space above the tabs in Firefox 31.0?

  • 5 回覆
  • 13 有這個問題
  • 1 次檢視
  • 最近回覆由 Tim H

more options

Why is there blank space across the top above tabs and address bar and minimize, full-screen and close icons on upper right? Restored default theme without impact, change seemed to happen on FF 31 update.

Why is there blank space across the top above tabs and address bar and minimize, full-screen and close icons on upper right? Restored default theme without impact, change seemed to happen on FF 31 update.

被選擇的解決方法

Try a negative margin-top for the Tab Bar (#TabsToolbar) with code in userChrome.css

Add code to the userChrome.css file below the default @namespace line.


@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#TabsToolbar {margin-top:-1px!important}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

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

所有回覆 (5)

more options

I've had a short empty space in Firefox 29 and later. My tabs do not slide up into that area (the unused title bar space) until I maximize the window. Perhaps someone knows a trick to have them slide up all the time, if that's what you're looking to accomplish.

more options

選擇的解決方法

Try a negative margin-top for the Tab Bar (#TabsToolbar) with code in userChrome.css

Add code to the userChrome.css file below the default @namespace line.


@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#TabsToolbar {margin-top:-1px!important}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

more options

OK, I can see now that the only time there is no space is when the window is maximised. Another question now presents itself - why don't I have a chrome folder in my profile?

more options

The chrome folder and the userChrome.css and userContent.css do not exist by default and need to be created.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

There is a pref (about:config: browser.tabs.drawInTitlebar) that controls the position of the tabs in maximized screen mode, but there is no setting for the position of the Tab bar when the screen is not maximized.

more options

All plausible, but didn't change anything. I checked for the right directory, checked it was the correct case, checked it was a .css - but didn't make a difference!