In IE's quirks mode, it appears images remain inline when set to position absolute.

<li style='padding-left:25px;position:relative'>
    Hello, I am some text
    <img src='http://userserve-ak.last.fm/serve/34s/2378690.jpg' style='position:absolute;left:0px;'/>
</li>

Is there any way to make this behave like it were in standards mode (with just CSS)?

link|improve this question

what are you trying to achieve? – amosrivera Jun 27 '11 at 21:18
Make the CSS work for both standards and quirks mode. In quirks mode, the image is shifted to the right 25px, due to its container's padding. – Azmisov Jun 27 '11 at 21:41
"display:block" on the <img>? – chprpipr Jun 28 '11 at 0:43
Yeah, I tried that already, but it seems to ignore it. – Azmisov Jun 28 '11 at 13:50
@Azimisov - why do you want to use Quirksmode at all? Quirksmode is basically an IE5.5 compatibility mode. There really is no good reason to be using it these days. Put a doctype at the top of your page, switch to standards mode, and everyone will be much better off. – Spudley Jul 11 '11 at 12:25
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.