How to center buttons in Twitter Bootstrap 3?

后端 未结 14 1366
南笙
南笙 2020-11-30 17:36

I am building a form in Twitter Bootstrap but I\'m having issues with centering the button below the input in the form. I have already tried applying the center-block<

14条回答
  •  再見小時候
    2020-11-30 18:21

    You can do it by giving margin or by positioning those elements absolutely.

    For example

    .button{
      margin:0px auto; //it will center them 
    }
    

    0px will be from top and bottom and auto will be from left and right.

提交回复
热议问题