DZone 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
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
Snippets Manager replied on Mon, 2006/12/04 - 8:12am