I am using four iframes: header, menuframe,bodyframe and footer. The menuframe and bodyframe are placed side-by-side. There is a space between the footer and the menuframe and bodyframe. How do I remove it?
css:
iframe{
border:0;
margin:0;
}
iframe.menuframe{
border:0;
margin:0;
width:183px;
}
iframe.bodyframe{
border:0;
margin:0;
width:300px;
}
html:
<iframe name="header" src="Header.html" frameborder="0" cellspacing="0" scrolling="no" style="border-style:none; padding:0; border:0; width:100%; height:110px;"></iframe>
<iframe name="menuframe" src="Menu.html" frameborder="0" cellspacing="0" scrolling="no" style="border-style:none; padding:0; border:0; height:590px;"></iframe>
<iframe name="bodyframe" src="Home.html" frameborder="0" cellspacing="0" scrolling="no" style="border-style:none; padding:0; border:0; height:590px;"></iframe>
<iframe name="footer" src="Footer.html" frameborder="0" cellspacing="0" scrolling="no" style="border-style:none; padding:0; border:0; width:100%; height:25px;"></iframe>