Mozilla 도움말 검색

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

자세히 살펴보기

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