Hi, i am having a problem with CSS, i currently have a 3 column layout i devised that is fluid but resizes according to margins as opposed to %, which works fine in FF and IE, however, i use an iframe in the center section that uses margins to resize, and i initially used width:100% which sohuld have taken all available space within the container, however, in IE, it stretches over the center section, but goes how it is supposed to when you resize the browser window, in FF it works fine, but it seems to inherit the background of the section, but that’s ok.
HTML
Your browser does not support inline frames click here
to get the content.
CSS
#center
{
background-color:#33dd5f;
color:#000;
margin-left:205px;
margin-right:205px;
border:1px solid #000;
padding-bottom:10px;
}
#center iframe
{
height:350px;
margin-top:5px;
width:100%;
}