How to center buttons in Twitter Bootstrap 3?

后端 未结 14 1281
南笙
南笙 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条回答
  • Wrap the Button in div with "text-center" class.

    Just change this:

    <!-- wrong -->
    <div class="col-md-4 center-block">
        <button id="singlebutton" name="singlebutton" class="btn btn-primary center-block">Next Step!</button>
    </div>
    

    To this:

    <!-- correct -->
    <div class="col-md-4 text-center"> 
        <button id="singlebutton" name="singlebutton" class="btn btn-primary">Next Step!</button> 
    </div>
    

    Edit

    As of BootstrapV4, center-block was dropped #19102 in favor of m-*-auto

    0 讨论(0)
  • 2020-11-30 18:33

    add to your style:

    display: table; margin: 0 auto;

    0 讨论(0)
提交回复
热议问题