본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Getting tabs across full width of window

  • 6 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: wendiwoman2

more options

When I have a handful of tabs open, they start scrolling off-screen, despite the fact that there is plenty of room on the tab bar. In fact, tabs never seem to populate the right 50% of the tab bar. I have found plenty of advice about how to set minimum and maximum sizes for the tabs themselves, but that is not my problem. I want to be able to see all of my tabs when there is plenty of room to show them. Any way to solve this?

When I have a handful of tabs open, they start scrolling off-screen, despite the fact that there is plenty of room on the tab bar. In fact, tabs never seem to populate the right 50% of the tab bar. I have found plenty of advice about how to set minimum and maximum sizes for the tabs themselves, but that is not my problem. I want to be able to see all of my tabs when there is plenty of room to show them. Any way to solve this?

선택된 해결법

Make sure you have width:100vw; property rules.

#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

#tabbrowser-tabs {
  width: 100vw !important;
}


See also this forum response for updated CSS code for Firefox 89+:

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (6)

more options

Hmm, does anything else seem to be using that empty space?

You can use the Customize panel to check whether there is some kind of spacer there (and remove it): Customize Firefox controls, buttons and toolbars.

more options

Hi jscher2000. Thanks for replying. I checked the customize panel, and there isn't anything there that I can see. Here's a screenshot showing my tab bar, with about ten open tabs.

more options

Hmm, moving the bar with userChrome.css? Perhaps there is a glitch with whatever maintains the width. Can you go back to the source of your rules and see whether there is an update for Firefox 96?

more options

I think you are the right track. I temporarily renamed the userChrome.css file, and the tab bar went to full width, but of course, above the other toolbars. I'll dig into the contents of that file. Thanks for your help.

more options

선택된 해결법

Make sure you have width:100vw; property rules.

#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

#tabbrowser-tabs {
  width: 100vw !important;
}


See also this forum response for updated CSS code for Firefox 89+:

more options

Cor-el... That was it! One quick edit, and all is now well. Thank you so much.