Forum Moderators: not2easy

Message Too Old, No Replies

3 columns layout with header and footer

problems in IE

         

fwordboy

10:16 am on Oct 31, 2003 (gmt 0)

10+ Year Member



this is what i've got

#boxwrap {
background-color: #FFFFFF;
border: 1px solid #000000;
position: relative;
width: 85%;
top: 20%;
bottom: 20%;
margin: 0 auto;
padding: 0;
}
#header{
float: left;
}
#logo{
clear: left;
float: left;
}
#content{
clear: none;
float: left;

}
#nav{
clear: none;
float: left;
}
#footer{
clear: both;
}

mozilla displays them as i'd like

<BOX>
HEADER
LOGO CONTENT NAV
FOOTER
</BOX>

but IE6 does this

<BOX>
HEADER CONTENT NAV
LOGO
FOOTER
</BOX>
giving the layers a position (either relative or absolute makes things worse.)
Help

amznVibe

10:22 am on Oct 31, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Save yourself some time, most known 3 column layouts and compatibilities:
[css-discuss.incutio.com...]

fwordboy

11:00 am on Oct 31, 2003 (gmt 0)

10+ Year Member



thankyou. exactly what I was looking for.