I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself. Here is the setup and CSS I am using:
<div id="page">
<div id="menucol"></div>
<div id="contcol"></div>
</div>
CSS:
#page{
width: 975px;
background-color: #CECC99;
}
#menucol{
float: left;
width: 290px;
background-color: #CECC99;
padding-top: 10px;
text-align: center;
}
#contcol{
float: right;
width: 684px;
background: #fff;
border-left: 1px solid #000;
}
Any help would be appreciated!
Thanks ahead;
Tom
Comment