How do I left align these Bootstrap form items?

后端 未结 6 498
無奈伤痛
無奈伤痛 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:37

    Just my two cents. If you are using Bootstrap 3 then I would just add an extra style into your own site's stylesheet which controls the text-left style of the control-label.

    If you were to add text-left to the label, by default there is another style which overrides this .form-horizontal .control-label. So if you add:

    .form-horizontal .control-label.text-left{
        text-align: left;
    }
    

    Then the built in text-left style is applied to the label correctly.

提交回复
热议问题