I have a set of three horizontal cards, not in a card deck as it's not responsive, and I want to align images in the bottom right corner of each. Bootstrap 4 comes with a class for card-img-left which works perfectly. I've attempted using float-right and removing the flex class to position the image on the bottom right, but so far, nothing has worked.
Below is my code snippet:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="col-md-6 align-items-stretch">
<div class="card mb-4 box-shadow border-0">
<img class="card-img-left mt-4 ml-4" src="image link here" alt="Card image cap" style="max-
width: 40px;">
<div class="card-body">
<h4 class="mt-3 font-weight-normal card-title">A really long and life altering quote will go here. This is just dummy text.
</h4>
<p class="card-text"> Person's name</p>
</div>
<img class="float-right" src="image link here" alt="Card image cap" style="max-width: 40px;">
</div>
</div>