I want to align both the image and the div. I also want the top of the image and div to be aligned as well. This is what I still have
<div>
<img src="http://lorempixel.com/500/333/nature/2" class="img-fluid d-inline-block">
<div class="comment d-inline-block">
<div class="comment-header">
<span>title</span>
</div>
<blockquote>comment</blockquote>
</div>
I tried the d-inline-block class and it comes close to what I'm looking for, but I need the text to be at the top.
You can see here: http://www.bootply.com/zpj12TL4wI
source
share