我在xul中创建了一个侧边栏,我需要像Firefox的历史记录和书签边栏一样灵活。为此,我尝试将flex ='1'应用于(broadcasterset,broadcaster,page,grid),但没有变化。在这种情况下我该怎么做?
答案 0 :(得分:1)
使用<splitter>
element实现“灵活性”。例如:
<hbox>
<iframe id="sidebar" type="content" width="300"/>
<splitter id="splitter" collapse="before" state="open"/>
<iframe id="browser" type="content" flex="1"/>
</hbox>
如果隐藏侧边栏,您必须记住隐藏拆分器。