Hi,
Trying to figure out how IE and Firefox (and any other browsers) treat css for divs differently. I set up three simple divs which display fine in IE(7), but don't display "right" in FireFox(3.0.8). Not complicated, just need a left panel, header and somewhere for the main content. For some reason, in FireFox the header only shows at 400px w instead of the 650px like it should. Can someone point me in right direction to get a good handle on this?
Have a client mockup I already setup this way, then realized FF was messed up. Can post URL for that if helps see what I'm trying to do?
#container
{
position: absolute;
width: 900px;
left: 50%;
margin-left: -450px;
top: 0%;
height: 500px;
background-color: Red;
}
#leftContent
{
width: 250px;
float: left;
height: 500px;
background-color: Green;
}
#header
{
width: 650px;
height: 150px;
background-color: Lime;
display: block;
}