Bootstrap 4 center-block unable to center

前端 未结 3 1726
南旧
南旧 2020-12-13 14:24

I have the following bootstrap html code (its JSX hence the className but the idea is the same):

相关标签:
3条回答
  • 2020-12-13 14:54

    btn-group has display:inline-block so you would use text-center in the parent container..

    http://codeply.com/go/hyUYkUrtRN

    NOTE: In Bootstrap 4, center-block is now mx-auto, representing margin: 0 auto; for centering display:block elements. Bootstrap 4 now has a d-block class too so an inline element can be made display:block like this..

    <img src=".." class="d-block mx-auto" >

    Also see: Center the content inside a column in Bootstrap 4

    0 讨论(0)
  • 2020-12-13 14:55

    Bootstrap 4 does not have center-block Instead, I use d-block mx-auto which sets display to block, and left and right margins to auto.

    0 讨论(0)
  • 2020-12-13 15:00

    Bootstrap 4 (as of 2017-08-16) will use d-block and to center you use mx-auto.

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