0
我如何垂直對齊我的複選框與他們在bootstrap v4的標籤?我下面舉個例子:垂直對齊複選框/收音機輸入與他們的標籤
https://plnkr.co/edit/TmD0ffKrk32oy7etD8g0?p=preview
或
<body style='font-size:200%'>
<div class="form-group has-success"'>
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Check this</span>
</label>
</div>
<div class="form-group has-warning">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Check this</span>
</label>
</div>
<div class="form-group has-danger">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Check this</span>
</label>
</div>
</body>
在哪裏,我想複選框與標籤
編輯垂直居中:有些人提到可能重複的,但我正在尋找一個bootstrap v4解決方案。 Bootstrap增加了許多CSS,比如flex佈局等等,這些使我迄今爲止閱讀的所有解決方案都過時了。
的可能的複製[如何對齊複選框和其標籤一致跨瀏覽器](http://stackoverflow.com/questions/306252/how-to-align-checkboxes-and-their-labels-consistently-cross-browsers)和[主機其他人通過搜索發現](http://stackoverflow.com/search?q=align+checkbox+with+label) – Rob
@Rob感謝您指出了現有的問題,但我正在尋找一個特定的bootstrap v4解決方案.. 。並找不到 – ncohen