In both chrome and firefox:
form-inline
causes the label to be shifted downwards and the space between the checkbox and the label is narrower than when usingform-horizontal
.form-horizontal
displays perfectly
Here's a demo in jsFiddle
Here's some code:
<!-- language: lang-html --><form class="form-inline">
<div class="checkbox">
<label>
<input type="checkbox"/> Test againn
</label>
</div>
</form>
Here's a screenshot:
Is there a way to make the checkboxes all aligned correctly in both browsers or am I missing something?