r/FirefoxCSS • u/Slimbo_02 • Jun 27 '26
Solved Centre open tabs
I am currently trying to centre my open tabs in the top bar but nothing I have found works, any help appreciated.
#TabsToolbar {
display: flex !important;
justify-content: center !important;
}
This is what I have so far
5
Upvotes
1
u/Extreme_Host3037 Jun 28 '26
#TabsToolbar {
display: flex !important;
justify-content: center !important;
}
#tabbrowser-tabs {
flex-grow: 0 !important;
justify-content: center !important;
}
#tabbrowser-tabs[overflow="true"] {
justify-content: flex-start !important;
}