实现盒子内没有宽度的分割器
我有一个水平盒子,由 4 个其他盒子组成,并用分离器隔开。 我想使用一个看起来像树分割器(没有宽度)的分割器,但是每当我尝试使用它时,分割器就会消失并且无法调整列的大小。 有什么想法吗?
或者您知道如何实现一个看起来像 id="folderpane_splitter"
且宽度可能为 1px
的分离器吗? 这个解决方案对我来说是完美的。
我的代码如下所示:
<hbox>
<hbox flex="10">
<label value="name1"/>
</hbox>
<splitter/>
<hbox flex="20">
<label value="name2"/>
</hbox>
<splitter/>
<hbox flex="30"">
<label value="name3"/>
</hbox>
<splitter/>
<hbox flex="40">
<label value="name4"/>
</hbox>
</hbox>
如果有人想知道我正在为 Thunderbird 开发扩展。
I have a horizontal box consisting of 4 other boxes separated by splitters. I want to use a splitter that looks like the tree-splitter (with no width), but whenever I try to use it, the splitters disappear and the columns cannot be resized. Any ideas why?
Or have you got any idea how I can implement a splitter that would look like one with id="folderpane_splitter"
that has width probably 1px
? This solution would be perfect for me.
My code looks like:
<hbox>
<hbox flex="10">
<label value="name1"/>
</hbox>
<splitter/>
<hbox flex="20">
<label value="name2"/>
</hbox>
<splitter/>
<hbox flex="30"">
<label value="name3"/>
</hbox>
<splitter/>
<hbox flex="40">
<label value="name4"/>
</hbox>
</hbox>
If anyone wonders I'm working on an extension for Thunderbird.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我尝试在 Firefox 中使用 id="folderpane_splitter" 但它没有改变外观。 无论如何,也许您正在寻找这样的东西?
I tried using the id="folderpane_splitter" in firefox but it didn't change look. Anyway perhaps you are looking for something like this?
使用:
给了我我需要的外观。 可能不会覆盖最小宽度,而是使其变薄。
Using:
gave me the apperance I needed. Probably not overriding min-width was blacking it from getting thinner.
树有特殊代码 使零宽度分割器工作。
Trees have special code to make zero-width splitters work.