Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Arrange Firefox tabs in multiple rows (See related posts)

If you want to arrange Firefox tabs in multiple rows.
add the following code to your userChrome.css.

.tabbrowser-tabs > hbox {
  display: block !important;
}

.tabbrowser-tabs tab {
  -moz-appearance: none !important;
  display: inline !important;
  width: 16% !important;
  min-width: 16% !important;
  max-width: 16% !important;
}

Comments on this post

JediWright posts on Dec 04, 2006 at 07:17
Hello-

I'm a bit new to this software tweaking business so bear with me if my question(s) are elementary...

Anyway, I've added the code in to my userChrome.css and have re-started Firefox but no new row is appearing.
What must be done for a new row to appear and is there any limit to how many can be made?

Thanks for any insight.

You need to create an account or log in to post comments to this site.


Click here to browse all 4863 code snippets

Related Posts