In my div, I have an image along with a paragraph and h6 text. My goal is to position the text on the right side of the image without it wrapping underneath.
I've experimented with floating both left and right, clearing, setting display to inline-block on the div, and floating the image, but I just can't seem to achieve the desired layout.
<div class="col">
<img src="images/homepage-blue-icon.png" class="body-img" title="Me" alt="Me" align="left" />
<h6>Blueberries</h6>
<p>Healthy and nutritious</p>
</div>