Below is my code. I wished to wrap my text around the image. I used q {float: left; width: 100%}
. However, the text appeared below the image.
<p class = "review">
<img src="https://webster.cs.washington.edu/images/fresh.gif" alt="Fresh" />
<q>TMNT is a fun, action-filled adventure that will satisfy longtime fans and generate a legion of new ones.</q>
</p>
Is there any other way to wrap my text around the image? Thank you!