滚动复选框列表不起作用

时间:2014-06-14 07:05:00

标签: asp.net scroll checkboxlist

我有这个CheckBoxList:

 <asp:CheckBoxList class="checkBoxList" ID="CheckBoxList1"  runat="server"   
        TextAlign="Right" float="right" >

和这个css:

 .checkBoxList {
    direction:rtl;
    float:right;
    text-align:right;
    width:100%;
    height:200px%;
    overflow-y:scroll 
}

但我的CheckBoxList没有滚动,为什么?

1 个答案:

答案 0 :(得分:1)

替代方法是将您的复选框列入div并使div可滚动 这是代码

<div class="checkBoxList">
<asp:CheckBoxList runat="surver" ID="CheckBoxList1">
// Your Code
</asp:CheckBoxList>
</div>

和css是

 .checkBoxList {
    direction:rtl;
    float:right;
    text-align:right;
    width:100%;
    height:200px;
    overflow-y:scroll
   }