1
I have the following html structure:
<div class="col-8 ml-2 bg-secondary">
<h3 class="">Ultimas Notícias</h3>
<div class="card">
<div class="row">
<div class="col-3 bg-dark">
<img src="http://via.placeholder.com/900x500" class="w-100">
</div>
<div class="col-9">
<div class="card-block">
<div class="card-title font-weight-bold mb-0">
Lorem ipsum dolor sit amet
</div>
<div class="card-text ">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor ipsum minima minus
modi nobis quisquam tempora temporibus? Ad aspernatur dolorum maxime nesciunt omnis
reprehenderit suscipit.
</div>
</div>
</div>
</div>
</div>
</div>
Resulting in:
I want to make the image take up all the space in the column, which would be the dark black part (but the dark black part should line up with Last News and not go off the card)
Igor speaks I edited the answer with the image centering on the Father
– hugocsl