Bob Schwartz wrote:
I have a site in progress that is currently "pixel perfect" in all
real browsers, it's all over the screen in IE 6 (don't yet know about
IE7).
IE7 is doing fine :-)
http://www.fgtestserver.net/rain/index.html
IE6' "margin-doubling on floats" bug is causing most damage.
Adding...
#con {
display:inline;
}
#rhtcol {
display:inline;
margin-left: -10px;
}
...will kill that bug, and also provide a bit more space for IE6 lack of
respect for declared dimensions.
Only a few more IE6 bugs left for you to fix then.
While you're at it: There's no point in declaring both 'min-height' and
'height' with same, fixed, value on an element. Fixed 'height' is fixed
'height' in all but IE6 and older.
True that IE6 doesn't understand 'min-height' but if that's what you're
trying to fix then make sure other browsers can't see that 'height'
you're serving IE6.
regards
Georg
--
http://www.gunlaug.no
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************