I'm trying to give a space between the square of the checkboxlist and the text, but it's not working, I followed the code.
<div class="form-group">
<asp:Label ID="Label2" Text="" runat="server"
CssClass="col-sm-2 control-label" />
<div class="col-sm-10 ">
<asp:CheckBoxList ID="cblEscolhaDaOpcao" runat="server"
DataSourceID="SqlDataSource1" DataTextField="Opcao" RepeatColumns="5" Width="100%" CellSpacing="10" CellPadding="10" >
</asp:CheckBoxList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [Opcao] FROM [ComandaOpcao]">
</asp:SqlDataSource>
</div>
</div>