我已经成功地将一行文本与图像(小提琴)对齐。
<div class="profile-details-wrapper">
<img class="profile-picture" src="http://placehold.it/50x50" />
<span class="profile-details">
username
</span>
</div>
但是,当我尝试添加另一行文本时,它会包裹在图像下方(小提琴)。
<div class="profile-details-wrapper">
<img class="profile-picture" src="http://placehold.it/50x50" />
<span class="profile-details">
username
<br />
username
</span>
</div>
如何使多行文本超过其旁边图像的高度,但不会在其下方换行?
额外的问题:我将如何垂直对齐它呢?