如何制作侧边栏以增加其完整长度

How to make sidebar to increase its full length?

本文关键字:增加 何制作 侧边栏      更新时间:2023-09-26

我在xul中创建了一个边栏,我需要让它像Firefox的历史记录和书签边栏一样灵活。为此,我尝试将flex='1'应用于(broadcasterset、broadcaster、page、grid),但没有更改。这种情况下我该怎么办?

"灵活性"是使用<splitter>元素实现的。例如:

<hbox>
  <iframe id="sidebar" type="content" width="300"/>
  <splitter id="splitter" collapse="before" state="open"/>
  <iframe id="browser" type="content" flex="1"/>
</hbox>

如果你隐藏侧边栏,你也必须记住隐藏拆分器。