How do I left align these Bootstrap form items?

后端 未结 6 496
無奈伤痛
無奈伤痛 2021-02-03 17:50

I\'m using Bootstrap for the first time, and am having a lot of trouble aligning this form-horizontal to the left.

The list items are horizontal, as they should be, but

6条回答
  •  生来不讨喜
    2021-02-03 18:18

    If you are saying that your problem is how to left align the form labels, see if this helps:
    http://jsfiddle.net/panchroma/8gYPQ/

    Try changing the text-align left / right in the CSS

    .form-horizontal .control-label{
        /* text-align:right; */
        text-align:left;
        background-color:#ffa;
    }
    

    Good luck!

提交回复
热议问题