Alignment and padding for asp:CheckBoxList

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

I have an asp.net checkboxlist as follows:

    
        

        
4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-20 14:59

    some of checkboxlist items, has label, for space between text and the item, for example checkbox, you have to give type of item in Css.

    Exlampel:

    .myCheckBoxList label 
    {  
        padding-right: 5px; 
    }
    

    and give che checkboxlist class like this:

     CssClass="myCheckBoxList" 
    

提交回复
热议问题