Firefox中缺省标签栏是处于上方的,你可以通过TBE或者TBP扩展来随意定制标签栏的位置。
另外,如果你对Firefox比较熟悉的话,你也可以编辑userChrome.css配置文件来修改标签栏的位置,在该文件中加入如下代码,位置不限:
把标签页放在下面:
/* Display the Tabbar at the bottom */
#content > tabbox {-moz-box-direction: reverse;}
把标签页放在左边:
/* tabs at left */
#content > tabbox {
-moz-box-orient: horizontal;
}
.tabbrowser-strip {
-moz-box-orient: vertical;
/* note: you can set this to -moz-scrollbars-vertical instead,
but then the scrollbar will *always* be visible. this way
there is never a scrollbar, so it behaves like the tab bar
normally does */
overflow: -moz-scrollbars-none;
}
.tabbrowser-tabs {
-moz-box-orient: horizontal;
min-width: 10ex; /* you may want to increase this value */
-mox-box-pack: start;
-moz-box-align: start;
}
.tabbrowser-tabs > hbox {
-moz-box-orient: vertical;
-moz-box-align: stretch;
-moz-box-pack: start;
}
.tabbrowser-tabs > hbox > tab {
-moz-box-align: start;
-moz-box-orient: horizontal;
}
/* remove the close-tab button. trust me, you need to do this. */
.tabbrowser-tabs > stack {
display: none;
}
把标签页放在右边:
上面两段代码一起用。
推荐使用ChromEdit扩展来编辑配置文件。
|