Bootstrap: align input with button

前端 未结 12 683
栀梦
栀梦 2020-11-28 17:21

Why don\'t buttons and inputs align well in Bootstrap?

I tried something simple like:

12条回答
  •  感动是毒
    2020-11-28 17:53

    Use .form-inline = This will left-align labels and inline-block controls for a compact layout

    Example: http://jsfiddle.net/hSuy4/292/

    .form-horizontal = Right align labels and float them to the left to make them appear on the same line as controls which is better for 2 column form layout.

    (e.g. 
    Label 1: [textbox]
    Label 2: [textbox]
         : [button]
    )
    

    Examples: http://twitter.github.io/bootstrap/base-css.html#forms

提交回复
热议问题