复选框与引导程序对齐

时间:2018-01-08 13:18:27

标签: asp.net twitter-bootstrap-3

我有一个带有class =" form-control"的复选框,我注意到复选框位于表单控件边框的中心,如何左对齐它:

我的HTML代码是:

 <input type="checkbox" class="form-control" style="margin: 0px 0px 0 !important;" id="txtPEPFlag" name="txtPEPFlag" value="Y">

显示为(IE9):

enter image description here

但我需要它看起来像这样:

enter image description here

3 个答案:

答案 0 :(得分:1)

 <input type="checkbox" class="form-control" style="margin-right:30px!important;;" id="txtPEPFlag" name="txtPEPFlag" value="Y">

答案 1 :(得分:0)

当你给它表单控件类时,复选框不能正常工作,请点击此处:https://getbootstrap.com/docs/3.3/css/#forms
在示例中,他们将其放在复选框类div:

<div class="checkbox">
    <label>
      <input type="checkbox"> Check me out
    </label>
</div>

答案 2 :(得分:0)

尝试使用bootstrap中的网格列