实现盒子内没有宽度的分割器

发布于 2024-07-25 14:14:34 字数 738 浏览 4 评论 0原文

我有一个水平盒子,由 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

东北女汉子 2024-08-01 14:14:34

我尝试在 Firefox 中使用 id="folderpane_splitter" 但它没有改变外观。 无论如何,也许您正在寻找这样的东西?

<splitter style="-moz-appearance: separator;"/>

I tried using the id="folderpane_splitter" in firefox but it didn't change look. Anyway perhaps you are looking for something like this?

<splitter style="-moz-appearance: separator;"/>
痴意少年 2024-08-01 14:14:34

使用:

<splitter style="background-image: none; width: 1px; min-width: 1px;"/>

给了我我需要的外观。 可能不会覆盖最小宽度,而是使其变薄。

Using:

<splitter style="background-image: none; width: 1px; min-width: 1px;"/>

gave me the apperance I needed. Probably not overriding min-width was blacking it from getting thinner.

野侃 2024-08-01 14:14:34

Trees have special code to make zero-width splitters work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文