In the following html listing the bullets does not appear
for the unordered list. Once the "float" style is removed
from the image the bullets appear again. Is there a way to
fix this?
<html>
<img src="test.gif" style="float:left;"/>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
</html>