4

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?

Carol Skelly
  • 351,302
  • 90
  • 710
  • 624
Laurent
  • 539
  • 1
  • 5
  • 11

2 Answers2

5

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

Graham
  • 7,431
  • 18
  • 59
  • 84
Carol Skelly
  • 351,302
  • 90
  • 710
  • 624
0

Found a solution:

.carousel-item img {
    margin: 0 auto;
}
Laurent
  • 539
  • 1
  • 5
  • 11