Alignment and padding for asp:CheckBoxList

前端 未结 4 1194
礼貌的吻别
礼貌的吻别 2020-12-20 14:35

I have an asp.net checkboxlist as follows:

    
        

        
4条回答
  •  鱼传尺愫
    2020-12-20 15:02

    You should be able to apply the same methods to the CssClass property of your CheckBoxList control as you would a regular checkbox.

    Here is some CSS code I used to indent long text next to an ASP.net check box list:

    .chkChoice input 
    { 
        margin-left: -20px; 
    }
    .chkChoice td 
    { 
        padding-left: 20px; 
    }
    

    ASP.net:

    
    

提交回复
热议问题