使用 Firefox XUL,是否可以通过样式消除列表框边框?
我有以下 XUL 片段,它工作正常,但在整个列表框周围放置了 1 像素边框。 我尝试了多种 CSS 样式,但无法消除边框。
有任何想法吗?
<listbox>
<listhead>
<listheader id="adj_lh_1" label = "one"/>
<listheader id="adj_lh_2" label = "two"/>
</listhead>
<listcols>
<listcol flex="1" />
<listcol flex="1" />
</listcols>
<listitem>
<listcell id="adj_li_1" label="data one" />
<listcell id="adj_li_1" label="data two" />
</listitem>
</listbox>
I have the following XUL fragment, which works fine, but puts a 1 pixel border around the entire listbox. I've tried a number of CSS styles, but cannot eliminate the border.
Any ideas?
<listbox>
<listhead>
<listheader id="adj_lh_1" label = "one"/>
<listheader id="adj_lh_2" label = "two"/>
</listhead>
<listcols>
<listcol flex="1" />
<listcol flex="1" />
</listcols>
<listitem>
<listcell id="adj_li_1" label="data one" />
<listcell id="adj_li_1" label="data two" />
</listitem>
</listbox>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以应用“-moz-appearance:none;” css 中的样式规则。
例如。:
You can apply the "-moz-appearance: none;" style rule in your css.
Eg.: