Bootstrap form-horizontal vertical alignment of checkboxes without label text

Thylossus

I have changed from Bootstrap 3.0.0 to 3.2.0 this morning because I needed some of the new features for my web application. Everything seemed to work as expected until I observed an issue with the vertical alignment of checkboxes in a .form-horizontal form.

An example is available at http://www.bootply.com/AYN64feYze. The markup for this minimum example is:

<div class="form-horizontal">
    <div class="form-group">
      <label class="col-sm-2 control-label">With label text</label>
          <div class="col-sm-10">
            <div class="checkbox">
              <label>
                  <input type="checkbox"> label text
              </label>
            </div>
          </div>
    </div>
  <div class="form-group">
      <label class="col-sm-2 control-label">Without label text</label>
          <div class="col-sm-10">
            <div class="checkbox">
              <label>
                  <input type="checkbox">
              </label>
            </div>
          </div>
    </div>
</div>

If a checkbox has no following text it is shifted below the row it should appear in.

Is there a solution to this problem? Since I already have the leading label I do not need a following text for my checkboxes. My current workaround is adding text to the <label> that contains the <input type="checkbox"> and use the background color as the font color to hide the text.

Thank you for your help.

Serlite

I'm not sure if this will affect the rest of your form layout, but the issue seems to be resolved if you change the display attribute of <label> (currently set to inline-block) to:

label{
    display:inline;
}

Here's an updated Bootply. Hope this helps! Let me know if you have any questions.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bootstrap, align input with label to button without label, vertical form / not horizontal

From Dev

Bootstrap Horizontal alignment form

From Dev

Vertical and Horizontal alignment of text with CSS

From Dev

Bootstrap Horizontal Form not vertical

From Dev

Bootstrap Form Horizontal Alignment Errors

From Dev

Bootstrap Form Horizontal Alignment Errors

From Dev

Vertical-alignment label and checkboxes when label is split into two lines

From Java

Bootstrap 4 Center Vertical and Horizontal Alignment

From Dev

Horizontal and Vertical alignment of a toolbar with Bootstrap elements

From Dev

Bootstrap alignment of label and regular text

From Dev

Checkboxes in horizontal form, and on the right side of the label

From Dev

Horizontal alignment of Spring checkboxes

From Dev

Highcharts / Highstock horizontal plotLine label's vertical alignment?

From Dev

Bootstrap btn group vertical text alignment

From Dev

Android alignment horizontal and vertical

From Dev

Bootstrap 5 horizontal and vertical center on form

From Dev

Issue with alignment of text box and bootstrap label

From Dev

Label Vertical alignment not working

From Dev

Vertical and horizontal align image and text in container bootstrap

From Dev

How to mix vertical and horizontal form elements in one form in Bootstrap 3?

From Dev

Create bootstrap form having horizontal and vertical form field

From Java

Layout in SwiftUI with horizontal and vertical alignment

From Dev

Horizontal and vertical alignment in tabular cell

From Dev

Horizontal and vertical alignment in tabular cell

From Dev

css vertical and horizontal alignment issues

From Dev

Horizontal and vertical alignment in a flexbox table

From Dev

Vertical alignment of form-controls with wrapping labels in a row with Bootstrap 4

From Dev

Bootstrap - Vertical Alignment in a DIV

From Dev

Vertical alignment in bootstrap header

Related Related

  1. 1

    Bootstrap, align input with label to button without label, vertical form / not horizontal

  2. 2

    Bootstrap Horizontal alignment form

  3. 3

    Vertical and Horizontal alignment of text with CSS

  4. 4

    Bootstrap Horizontal Form not vertical

  5. 5

    Bootstrap Form Horizontal Alignment Errors

  6. 6

    Bootstrap Form Horizontal Alignment Errors

  7. 7

    Vertical-alignment label and checkboxes when label is split into two lines

  8. 8

    Bootstrap 4 Center Vertical and Horizontal Alignment

  9. 9

    Horizontal and Vertical alignment of a toolbar with Bootstrap elements

  10. 10

    Bootstrap alignment of label and regular text

  11. 11

    Checkboxes in horizontal form, and on the right side of the label

  12. 12

    Horizontal alignment of Spring checkboxes

  13. 13

    Highcharts / Highstock horizontal plotLine label's vertical alignment?

  14. 14

    Bootstrap btn group vertical text alignment

  15. 15

    Android alignment horizontal and vertical

  16. 16

    Bootstrap 5 horizontal and vertical center on form

  17. 17

    Issue with alignment of text box and bootstrap label

  18. 18

    Label Vertical alignment not working

  19. 19

    Vertical and horizontal align image and text in container bootstrap

  20. 20

    How to mix vertical and horizontal form elements in one form in Bootstrap 3?

  21. 21

    Create bootstrap form having horizontal and vertical form field

  22. 22

    Layout in SwiftUI with horizontal and vertical alignment

  23. 23

    Horizontal and vertical alignment in tabular cell

  24. 24

    Horizontal and vertical alignment in tabular cell

  25. 25

    css vertical and horizontal alignment issues

  26. 26

    Horizontal and vertical alignment in a flexbox table

  27. 27

    Vertical alignment of form-controls with wrapping labels in a row with Bootstrap 4

  28. 28

    Bootstrap - Vertical Alignment in a DIV

  29. 29

    Vertical alignment in bootstrap header

HotTag

Archive