Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)?

share|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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.