I would like to align the contents of my second column in the middle of the div. I tried to try in different ways, but have not yet found how. I am using Bootstrap 4.
Could you tell me how to do this?
<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 am sure that I will miss something very simple, but I do not know what.
JSFiddle example
Thank you for your help:)
source
share