ASP.net - Checkboxlist 控件高度和滚动条问题

<div style="OVERFLOW-Y:scroll; WIDTH:120px; HEIGHT:50px">
        <asp:CheckBoxList ID="CheckBoxList1" runat="server"
            Height="10px">
            <asp:ListItem>ddd</asp:ListItem>
            <asp:ListItem>ddd</asp:ListItem>
            <asp:ListItem>d</asp:ListItem>
            <asp:ListItem>fff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ff</asp:ListItem>
            <asp:ListItem>ffffff</asp:ListItem>
        </asp:CheckBoxList>
    </div>

 

CheckBoxList控件本身无scroll bar, 另外它的height属性不起作用.

 

所以解决方法是在CheckBoxList控件外包一个有滚动条的<div>就 ok了。 -_-

你可能感兴趣的:(server,asp.net,asp,div,scroll)