I'm wondering what's causing it not to read any whitespace inbetween the span or p tags as well as why the span doesn't align to the center with everything else?
li {
display: flex;
align-items: center;
}
li img {
width: 25px;
height: 25px;
}
li span {
align-self: center;
}
<ul>
<li>
<a href="https://placeholder.com">
<img src="http://via.placeholder.com/350x150"> <span> Username </span>
</a>
<p> added you as a friend</p>
</li>
</ul>