Does anyone know how to align a movie poster image, description text, and add to cart button on the same line? The text must be centered aligned without wrapping around the button or image, just like in this example.
https://i.sstatic.net/yQaCl.png
Currently, my setup looks like this. The movie description text is not center-aligned and wraps around the button. https://i.sstatic.net/V25NT.png
This is the code I am using. Can anyone help me modify it so that it resembles the first image?
<div class="card-block">
<div class="pull-left"><img src="https://{{movie.image}}" alt="[Image Missing]" width="70px" /></div>
<br><span>{{movie.description}}</span>
<span>
<button class="float-right btn btn-sm btn-success" (click)="addToCart(movie)">
Add to Cart
</button></span>
</div>