Why gose to image’s flow
This is code:
<p><img class="left" width="95" height="64" src="#" />
some text here some text here some text here some text here some text here some text here
</p>
<ul>
<li>some text here some text here some text here some text here some text here some text here some text here
</li>
</ul>
Probably because
the image is
float: lefteither the
<ul>or the<li>or both isdisplay: inlineI assume you want to keep the left float of the image. To get the
<ul>onto its own line,you could give it a
display: block; clear: left;to sort it out.