My website has a custom-sized image that I want to display using Bootstrap's carousel, but I'm struggling with styling the carousel.
Here is the result: https://i.sstatic.net/bs9HG.png
I'm trying to align the picture in the center.
This is the code I have so far: I've added a width style to my HTML code.
<div class="carousel-inner" style="width: 50%;">
<div class="carousel-item active">
<img src="img\post1.jpg"" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>