使firefox扩展工具栏元素向右对齐

时间:2011-12-04 06:29:51

标签: html firefox firefox-addon xul

所以我有这段代码:

   <toolbox id="navigator-toolbox">
      <toolbar id="abar" accesskey="T"
              class="chromeclass-toolbar" context="toolbar-context-menu"
              hidden="false" persist="hidden">
        <toolbarbutton id="ahah-b"
            label="hahaa" class="toolbarbutton-1 chromeclass-toolbar-additional custombutton" />
         <textbox id="search" />
         <toolbarbutton id="search-b" label="Search" oncommand="search()" />
      </toolbar>
   </toolbox>

但是使用此代码,所有内容都会在工具栏中左对齐。是否可以将“ahah-b”工具栏按钮向左对齐,然后将“搜索”文本框和“搜索-b”按钮对齐?

2 个答案:

答案 0 :(得分:1)

如果您仍在寻找答案,那么您想要的属性不对齐,那就是打包。 Mozilla Dev Network Docs - Pack

我正在处理的迷你网站特定浏览器的示例:

<toolbar id="nav-toolbar" pack='end'>
  <toolbarbutton image="images/back.png" />
  <toolbarbutton image="images/next.png" />
</toolbar>

Screenshot

答案 1 :(得分:0)

align='end'添加到toolbar应该有效。见https://developer.mozilla.org/en/XUL/Attribute/align