User2103319870 posted
I want little space between each checkboxlist label.
You can use below css style to add space in label
<style>
.checkbox label {
margin-left: 20px;
}
</style>
and assign the css to checkboxlist like below
<asp:CheckBoxList ID="ChkBoxList" RepeatDirection="Horizontal" RepeatColumns="25" CssClass="checkbox" runat="server"></asp:CheckBoxList>