> Christy Collins wrote:
> 
>> I have an absolutely positioned image that isn't appearing in IE - 
>> I've isolated the offending code and it seems to be a clearing div.
>> http://www.loudjoy.com/styled_div.html

I'll mention a third option also, where the inclusion or exclusion of a
clearer-div doesn't matter.

Restyle that image like this...

img#newest_additions{
float: left;
margin: 10px -100px 0 -4px;
position: relative;
}

It's no longer absolute positioned, so IE's bug is avoided. Even IE can
handle floats - with a bit of help :-)

FYI: this is what I sometimes refer to as 'removed floats'[1] in that
such a float doesn't take up any space. It doesn't change the float's
appearance, just its relations to its surroundings.

regards
        Georg

[1]http://www.gunlaug.no/contents/wd_demo_float_03.html
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to