How do I center an image in Bootstrap?

后端 未结 2 815
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-11 07:05

I\'m trying to horizontally center an image in the carousel of Bootstrap 4 Alpha 6.

It doesn\'t seem to work in any way I\'ve tried, including using center-blo

相关标签:
2条回答
  • 2020-12-11 07:47

    center-block has been replaced by mx-auto in Bootstrap 4. mx-auto represents auto x-axis margins (margin=left: auto; margin-right: auto) so it can be used to center display:block or display:flex elements.

    <div class="carousel-item active">
              <img class="img-fluid mx-auto" src="https://unsplash.it/200/200" alt="First slide">
    </div>
    

    More on Centering in Bootstrap 4

    0 讨论(0)
  • 2020-12-11 08:04

    Found a solution:

    .carousel-item img {
        margin: 0 auto;
    }
    
    0 讨论(0)
提交回复
热议问题