form-inline disappearing checkbox in Chrome Linux
Created by: bischofb
Using dev-v4 with Chrome on Linux Ubuntu. Note: this works fine when I test with Chrome on Windows.
When using checkbox with form-inline and it the label is more than one line, the checkbox keeps getting smaller and smaller. Thus, two lines of makes the checkbox smaller and four lines makes is super small. Effectively the label text is "squeezing out" the space available for the checkbox to appear. This only happens with form-inline. I tested without form-inline and the checkbox stays the same size regardless of how many lines of text appear next to it.
<form class="form-inline">
<div class="form-check col-sm-2">
<input class="form-check-input" type="checkbox" id="inlineCheckbox1" value="option1">
<label class="form-check-label" for="inlineCheckbox1">1 asdf sdfasdf asdf asdfasdf asdf asdf asdf asdf asdf sdaf asfd </label>
</div>
</form>