How do I center an image in Bootstrap?

假装没事ソ 提交于 2019-12-29 01:07:03

问题


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-block.

Here's what I've tried so far: http://codepen.io/anon/pen/wJdjQg?editors=1100

Any hints?


回答1:


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




回答2:


Found a solution:

.carousel-item img {
    margin: 0 auto;
}


来源:https://stackoverflow.com/questions/42744803/how-do-i-center-an-image-in-bootstrap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!