Is there a way to position the p tag directly below the user name and not beneath the image, all without relying on padding or margin-left?
Here is the code snippet:
<ul class="comments_list">
<li>
<i>
<img src='{{image_path}}' />
</i>
<span>User name</span>
<p>{{comment_text}}</p>
</li>
</ul>