I'd like to align the content of my second column in the middle of the div. I did try in a lot of different ways but so far I haven't found how.
I'm using Bootstrap 4.
Could you tell me how to do it ?
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-1">
<img class="rounded-circle img-thumbnail d-inline"
src="..."
height="65px"
width="65px"
alt="User image">
</div>
<div class="col-md-11">
<p class="d-inline">...</p>
<button class="close" type="button"><span class="fa fa-times" aria-hidden="true"></span></button>
</div>
</div>
</div>
</div>
I'm sure I miss something very simple but don't know what.
Thanks for your help :)