-
simple css layout question
so i’m trying to position three containers to fit snugly into an 800x175px header. one large one on the left, and two smaller – one on top of the other – on the right. The code below works for Safari but not for explorer (at least not 5.5)
.container
{
background-color: #FFFFFF;
width: 800px;
height:700px;
margin-left: auto;
margin-right: auto;
}.logo
{
float:left;
background-color: #008D00;
width: 550px;
height: 175px;
}.flash
{
float:left;
background-color:#FFCC33;
width:250px;
height:117px;
}.espanol
{
float:left;
background-color:#FFCC66;
width: 250px;
height: 58px;
}it seems like it should work, but the “espanol” div breaks out below the logo div in IE 5.5.
any help would be greatly appreciated,
thanks,
JPD