"Tine Müller" wrote
>> Er der nogen der kan sige hvorfor denne side ser OK ud i Firefox 
>> 
http://www.x7m.us/_clients/hys/dev/index.htm, men ikke i Explorer 6? Der 
>> vises en ekstra hvid kant nederst på siden, men KUN i explorer.
>
> Det er ikke en side jeg har lavet selv, men jeg har fundet ud af at hvis 
> jeg laver nedenstående rettelser så ser det ud til at virke, men jeg kunne 
> godt tænke mig at vide hvorfor?
>
> #nav_footer istedet for bottom: 0 skriv -6 px  og det samme for 
> #content_footer.
Hvis der er nogen som skulle være interesseret, så er problemet blevet løst, 
læs nedenstående. MEN vil da meget gerne høre jeres kommentarer til dette, 
hvis I altså har nogen.
 
---------------- indsat ------------------
Okay, the fix is IN.
Posted on another board and got this comment back which works PERFECTLY and
without the need for IE CCs.
            IE/win doesn't see "empty divs" as being empty, without
"something else"
            inside those divs. Thus, IE will add 'line-height' to what it
sees as a space.
            So, add a comment in there...
            <div id="nav_footer"><!-- --></div>
            <div id="content_footer"><!-- --></div>
            ...and even IE/win will get the message.
            Then, correct the height slightly, from...
            .homePage {height: 585px;}
            ...to...
            .homePage {height: 580px;}
            ...and it should work.
Interestingly, any EVEN height declaraton to the class also works (580px,
582px, 584px, etc) while odd-numbered declarations (585px, 587px) still
creates an overflow in IE.
Things that make you go "hummmm".
---------------- indsat ------------------
/Tine