我可以使用以下代码
创建一个带有水平滚动条的ASP.NETListBox
<div style="width:160px; overflow-x:auto;">
<asp:ListBox ID="ListBox1" runat="server"></asp:ListBox>
</div>
但是如何将min-width
属性设置为ListBox
,以便即使没有项目存在也不会收缩。我尝试使用CSS的min-width
,但没有得到它。
我访问了一个页面here ,但我无法在文件后面的代码中对其进行格式化。
答案 0 :(得分:1)
您可以通过将min-width
CSS属性设置为100%
来实现此目的:
<asp:ListBox ID="ListBox1" runat="server" style="min-width:100%;">
希望这有帮助。
答案 1 :(得分:0)
哦......我的天哪!我使用文档模式作为IE 7标准。 min-width
在IE 7中不起作用。