In IE, as the browser window shrinks, the purple boxes on the side meet their limit, and the scrollbars pop-up. Firefox just scrolls the whole browser, ignoring the internal DIV's overflow property. I have tried adding a doctype 4.01 transitional, strict, etc... to no availe. I have tried setting the html, body selectors to height:100%, to no avail.
the Code:
Is this possible in Firefox? If not, why not?
the Code:
Code:
<HTML>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY style="margin:0px;background-color:#FFFFCC;">
<FORM id="Form1" name="Form1" style="margin:0px;">
<INPUT type="hidden" ID="Frame_Name" value="main_console_TR_IFRAME">
</FORM>
<TABLE style="height:100%;width:100%;background-color:#FF7744;" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD style="height:64px;width:64px;background-color:#4477FF;">TL</TD>
<TD style="height:64px;background-color:#44FF77;"><div style="height:100%;width:100%;background-color:#0000FF;">TM</div></TD>
<TD style="height:64px;width:64px;background-color:#4477FF;">TR</TD>
</TR>
<TR>
<TD style="height:100%;width:64px;background-color:#44FF77;">
<div style="height:100%;width:100%;background-color:#0000FF;overflow:auto;">
<div style="height:300px;width:100%;background-color:#BB00BB;">ML<BR><BR>
<BR><BR><BR><BR><BR><BR></DIV>
</div>
</TD>
<TD style="height:100%;">MM</TD>
<TD style="height:100%;width:64px;background-color:#44FF77;">
<div style="height:100%;width:100%;background-color:#0000FF;overflow:auto;">
<div style="height:400px;width:100%;background-color:#BB00BB;">ML<BR>
<BR><BR><BR><BR><BR><BR><BR></DIV>
</div>
</TD>
</TR>
<TR>
<TD style="height:64px;width:64px;background-color:#4477FF;">BL</TD>
<TD style="height:64px;background-color:#44FF77;">BM</TD>
<TD style="height:64px;width:64px;background-color:#4477FF;">BR</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Is this possible in Firefox? If not, why not?