Erindesign
12-04-2006, 08:53 PM
Well, I gave pure CSS a crack on my current site. I'm stuck though.
I have a container div, and then 2 columns inside the container, one set to float left and the other float right. Somehow when the columns expand vertically, they don't push the container div's bottom border down, but rather just over ride it.
div#outer{
width:780px;
border:5px solid #633e17;
}
div#left{
float:left;
width:443px;
border:1px solid #80ae35;
}
div#right{
float:right;
width:336px;
border:1px solid #80ae35;
}
How do i Fix this?
I have a container div, and then 2 columns inside the container, one set to float left and the other float right. Somehow when the columns expand vertically, they don't push the container div's bottom border down, but rather just over ride it.
div#outer{
width:780px;
border:5px solid #633e17;
}
div#left{
float:left;
width:443px;
border:1px solid #80ae35;
}
div#right{
float:right;
width:336px;
border:1px solid #80ae35;
}
How do i Fix this?