How to center buttons in Twitter Bootstrap 3?

后端 未结 14 1391
南笙
南笙 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:18

    According to the Twitter Bootstrap documentation: http://getbootstrap.com/css/#helper-classes-center

    
    

    All the class center-block does is to tell the element to have a margin of 0 auto, the auto being the left/right margins. However, unless the class text-center or css text-align:center; is set on the parent, the element does not know the point to work out this auto calculation from so will not center itself as anticipated.

    See an example of the code above here: https://jsfiddle.net/Seany84/2j9pxt1z/

提交回复
热议问题