Have you encountered issues with a CheckBoxList displaying text in one line below its checkbox when the ListItem has many words?
Some checkboxes may also have smaller characters than usual.
If you have any solutions or ideas, please share them as I would greatly appreciate your advice.
Check out this example for reference:https://i.sstatic.net/GYIdv.png
Below is a snippet of the code showcasing the issue:
<div class="row">
<div class="col-sm-3 col-md-3 col-lg-3">
Example text
</div>
<div class="col-sm-8 col-md-8 col-lg-8">
<asp:CheckBoxList ID="chbList_1" runat="server" DataSourceID="SqlDataSource2" DataTextField="Name" DataValueField="Code">
</asp:CheckBoxList>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:CorpDicts %>" SelectCommand="select Code, Name from Base..Attributes"></asp:SqlDataSource>
</div>
</div>