所以我有这段代码:
<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”按钮对齐?
答案 0 :(得分:1)
如果您仍在寻找答案,那么您想要的属性不对齐,那就是打包。 Mozilla Dev Network Docs - Pack
我正在处理的迷你网站特定浏览器的示例:
<toolbar id="nav-toolbar" pack='end'>
<toolbarbutton image="images/back.png" />
<toolbarbutton image="images/next.png" />
</toolbar>
答案 1 :(得分:0)
将align='end'
添加到toolbar
应该有效。见https://developer.mozilla.org/en/XUL/Attribute/align