XUL 中的液体布局
我想在内部使用指定宽度的“float:left”css 来创建多行布局而不是使用行,有没有办法做到这一点?
例子:
<box style="max-width:200px;" >
<label width="100px" value="1" />
<label width="100px" value="2" />
<label width="100px" value="3" />
<label width="100px" value="4" />
</box>
I would like to use something like "float:left" css on inside with specified width to create multiline layout instead of using rows, is there a way to do that?
Example:
<box style="max-width:200px;" >
<label width="100px" value="1" />
<label width="100px" value="2" />
<label width="100px" value="3" />
<label width="100px" value="4" />
</box>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
替换为
即可。请记住,还有填充和边距,因此上面的示例很可能每行只有 1 个条目。Try replacing
<box>
with<description>
that should do it. Remember that there is also padding and margin so the above example will most likely only have 1 entry per line.