如何正确 space bootstrap 水平复选框
How to properly space bootstrap checkboxes horizontally
我正在尝试使用以下方法水平对齐 bootstrap 复选框:
<div class="blueBorder container-fluid col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div class="row">
<div class="container-fluid">
<label class="text-left col-lg-12 col-md-12 col-sm-12 col-xs-12 col-form-label">Attributes:</label>
<input type="checkbox" value="">
<label class="checkbox-inline col-lg-2">Camp Site</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Offsite Visit</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Scout Den</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Hike</label>
</div>
</div>
</div>
我的输入字段没有填满 bootstrap 容器的宽度,我在 Whosebug 上找到了添加 css:
的解决方案
input, textarea {
width: 100% !important
}
但是,这会导致复选框格式出现问题。
随着 css:
没有 css:
如果使用 bootstrap
,请使用此来源
https://getbootstrap.com/docs/4.0/components/forms/#default-stacked
我正在尝试使用以下方法水平对齐 bootstrap 复选框:
<div class="blueBorder container-fluid col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div class="row">
<div class="container-fluid">
<label class="text-left col-lg-12 col-md-12 col-sm-12 col-xs-12 col-form-label">Attributes:</label>
<input type="checkbox" value="">
<label class="checkbox-inline col-lg-2">Camp Site</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Offsite Visit</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Scout Den</label>
<input type="checkbox" value="">
<label class="checkbox-inline">Hike</label>
</div>
</div>
</div>
我的输入字段没有填满 bootstrap 容器的宽度,我在 Whosebug 上找到了添加 css:
的解决方案 input, textarea {
width: 100% !important
}
但是,这会导致复选框格式出现问题。 随着 css:
没有 css:
如果使用 bootstrap
,请使用此来源https://getbootstrap.com/docs/4.0/components/forms/#default-stacked