Here is my HTML.
In Firefox everything works fine. All the <TD> heights stay where they should be. But in IE for some reason the heights in the first two Table Cells <TD height=55> and <TD height=30> above will not stay at their set heights. They adjust themselves based on what information is contained by the <TD> which has "... Body Information here..." above. Why is that? Why won't the heights stay where they're told to stay? Am I doing something wrong here? I've tried putting height="*" in the <TD> for the body but that doesn't work. The only way I can seem to get it to work is by throwing a bunch of breaks <BR> after the body text or inserting the body into another enbedded <TABLE> with an absolute width and height. But I don't want that, I want the entire page to grow and shrink based on the size that the user sets for his browser. I want the two side columns and the header and footer to stay at their designated heights and widths.
Can anyone help me out here.
-CT
Code:
<TABLE width=100% height=100% border=0 cellspacing=0 cellpadding=0>
<TR>
<TD rowspan=5 width=50>
<TD width="*" height=55>blah blah blah</TD>
<TD height=55 aligh=right>blah blah blah</TD>
<TD rowspan=5 width=50>
</TR>
<TR>
<TD colspan=2 height=30>
<TABLE height=100% border=0 cellspacing=0 cellpadding=0>
...Menu stuff here...
</TABLE>
</TD>
</TR>
<TR>
<TD colspan=2>
...Body Information here...
</TD>
</TR>
<TR>
<TD colspan=2 height=10>
</TR>
<TR>
<TD height=30>
.... Footer Info here ....
</TD>
</TR>
</TABLE>
In Firefox everything works fine. All the <TD> heights stay where they should be. But in IE for some reason the heights in the first two Table Cells <TD height=55> and <TD height=30> above will not stay at their set heights. They adjust themselves based on what information is contained by the <TD> which has "... Body Information here..." above. Why is that? Why won't the heights stay where they're told to stay? Am I doing something wrong here? I've tried putting height="*" in the <TD> for the body but that doesn't work. The only way I can seem to get it to work is by throwing a bunch of breaks <BR> after the body text or inserting the body into another enbedded <TABLE> with an absolute width and height. But I don't want that, I want the entire page to grow and shrink based on the size that the user sets for his browser. I want the two side columns and the header and footer to stay at their designated heights and widths.
Can anyone help me out here.
-CT