为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Tabs toolbar

  • 9 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 wd0d

more options

My tabs toolbar does not extend across the entire laptop screen. Looks like it stops halfway, regardless of how many tabs are open. As tab number increases individual tab space narrows. How can I increase width to occupy full screen?

My tabs toolbar does not extend across the entire laptop screen. Looks like it stops halfway, regardless of how many tabs are open. As tab number increases individual tab space narrows. How can I increase width to occupy full screen?

被采纳的解决方案

solved my own problem. had used userchrome to get multirow bookmarks. added a css to get tabs at bottom. problem with this file. deleted last portion this file. viola problem solved. could not determine what was in deleted portion that reduced width of toolbar.

定位到答案原位置 👍 0

所有回复 (9)

more options

Hello,

In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see How do I create a screenshot of my problem?

Once you've done this, attach the saved screenshot file to your forum post by clicking the Browse... button below the Post your reply box. This will help us to visualize the problem.

Thank you!


Start Firefox using Troubleshoot(Safe) Mode {web link}

A small dialog should appear. Click Start In Troubleshoot(Safe) Mode (not Refresh). Is the problem still there?

more options

It is possible to drag other buttons and controls onto the tabs toolbar, stealing space from the tabs. Could you double-check in the Customize panel whether a flexible spacer or anything else that doesn't need to be there is using space on your Tabs bar (I do recommend keeping the New Tab + button and the List All Tabs button).

More info on Customize: Customize Firefox controls, buttons and toolbars

more options

Are you possibly using code in userChrome.css to style the Firefox user interface ?

more options

选择的解决方案

solved my own problem. had used userchrome to get multirow bookmarks. added a css to get tabs at bottom. problem with this file. deleted last portion this file. viola problem solved. could not determine what was in deleted portion that reduced width of toolbar.

more options

That was very good work. Well Done.

more options

LOOK HERE FOR ANSWER: https://support.mozilla.org/en-US/questions/1365847 Make sure you have width:100vw; property rules.

  1. TabsToolbar {
 display: block !important;
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;

}

  1. tabbrowser-tabs {
 width: 100vw !important;

由Scott于修改

more options

I think that 100vw is the percentage of the width(?), hence very important is right.

more options
more options

Well, I deduced/inferred that 100vw vs 50vw was a percentage, the linked url confirms it. Thanks for finalizing the solution. The Ts are crossed and the Is are dotted. QED