Greetings fellow siblings. I am facing an issue with Twitter Bootstrap checkboxes, particularly when viewed in Opera, Chrome, and IE. Here is the problem: I have come across this snippet of code
<div class="form-group">
<asp:Label ID="LblItemAnulado" Text="Item Anulado" runat="server" CssClass="col-xs-12 col-sm-2 col-md-2 col-lg-2 control-label" />
<div class="col-xs-12 col-sm-10 col-md-10 col-lg-10">
<div class="input-group">
<span class="input-group-addon">
<input type="checkbox" aria-label="...">
</span>
<input type="text" class="form-control" aria-label="...">
</div>
</div>
</div>
This HTML code displays correctly in Firefox, where the checkbox shows up as intended. However, in Chrome, Opera, and IE it does not.
Checkbox displayed properly (FIREFOX)
Checkbox displayed incorrectly (CHROME, OPERA, AND IE)
If I cannot find a solution to this issue, I may resort to using a dropdown list with yes/no options. But I am curious to understand why this discrepancy occurs.
Thank you all for your time and assistance.