Using this HTML, I can't figure why the text displays behind the image:
<div style="position: relative">
<img src="image_url_here" style="position:absolute; top: 10px; left: 10px;" />
This is some text, drawn on the page after the image, why is it drawn behind the image?
</div>
?
Tested in Chrome on Mac & PC and IE on PC.
It's because you set the image's position to absolute.