我有以下 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>