2014-06-14 52 views
1

我有這樣的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

另一種方法是換到DIV您的CheckBoxList,使格滾動 這裏是代碼

<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 
    } 
+0

我試了一下,但沒有奏效:( – user3721173