I managed to align a single line of text with an image successfully (view fiddle).
<div class="profile-details-wrapper">
<img class="profile-picture" src="http://placehold.it/50x50" />
<span class="profile-details">
username
</span>
</div>
But, when attempting to insert another line of text, it ends up wrapping below the image (check out fiddle).
<div class="profile-details-wrapper">
<img class="profile-picture" src="http://placehold.it/50x50" />
<span class="profile-details">
username
<br />
username
</span>
</div>
Is there a way to display multi-line text that extends beyond the image's height but doesn't wrap underneath it?
Bonus question: Any tips on vertically aligning it as well?