【问题标题】:Scroll for checkboxlist doesn't work滚动复选框列表不起作用
【发布时间】:2014-06-14 19:05:30
【问题描述】:

我有这个 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 没有滚动条,为什么?

【问题讨论】:

    标签: asp.net scroll checkboxlist


    【解决方案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
       } 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2010-11-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-06-17
      • 2016-03-14
      • 1970-01-01
      相关资源
      最近更新 更多