I have a page with a lot of tables and subtables in it. Part of the basic structure is this
I know this looks pretty complex, and there's a lot going on, but that's the nature of the page. Try to stay with me here. When I change the size of "MyTD1" to be "1%" or "MyTD2" to be "100%" (which is what I want to do), "MyTD3"'s width grows. Even if you're totally lost reading this, does anyone have a link to good site about advanced tables that can tell me how they interact with each other. i.e. What does the page process first, if input of the widths clash, which takes precedence, etc. Help on this specific problem, or a link to a really good site completely explaining tables would be excellent. Thanks.
Code:
<TABLE id="tbl1" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 8px" cellSpacing="0" cellPadding="0" width="100%" border="0">
<TR>
<TD id="MyTD1">Stuff1</TD>
<TD id="MyTD2">Stuff2</TD>
</TR>
<TR>
<TD colspan="2">
<TABLE id="tbl2" width="100%">
<TR>
<TD>
<TABLE id="tbl3" width="100%">
<TR>
<TD id="MyTD3">
<TABLE id="tbl4" width="100%">
<TR>
<TD>Stuff3</TD>
</TR>
</TABLE
</TD>
<TD id="MyTD4">
<TABLE id="tbl5" width="100%">
<TR>
<TD>Stuff4</TD>
</TR>
</TABLE
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD>Stuff5</TD>
</TR>
<TR>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>