i want to make a big image like a cards in bootstrap (Image overlays) but image is too big and the height i want ..this is i have done :
html :
<section class="card bg-dark no-border">
<div class="flex-column justify-content-center align-items-center bg-danger text-dark">
<img class="card-img img-fluid" src="img/bg_1.jpg" alt="Card image">
<div class="card-img-overlay text-center m-auto">
<h5 class="card-title mt-3">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional
content. This content is a little bit longer.</p>
<p class="card-text">Last updated 3 mins ago</p>
</div>
</div>
</section>
and does any one know a better way to make texts center with flex ?? .. im useing margin for this but it would be nicer way to do this flex box ...