How do I left align these Bootstrap form items?

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

    Instead of altering the original bootstrap css class create a new css file that will override the default style.

    Make sure you include the new css file after including the bootstrap.css file.

    In the new css file do

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

提交回复
热议问题