Aligning Tables II

liunx

Guest
I want to make one table that looks like: <br />
<br />
AB | Ab | aB | ab <br />
<br />
And one that looks like: <br />
<br />
AABB | AABb | AaBB | AaBb <br />
<br />
The |'s represent the cell walls. <br />
<br />
I want them to be stacked on top of eachother so the |'s will align vertically. <br />
<br />
Because of how I'm making this, I need the two tables to be the cells of a main table. <br />
<br />
<table><tr><td> <br />
<br />
<table><tr> <br />
<td>AB</td><td>Ab</td><td>aB</td><td>ab</td> <br />
</tr></table> <br />
<br />
</td></tr><tr><td> <br />
<br />
<table><tr> <br />
<td>AABB</td><td>AABb</td><td>AaBB</td><td>AaBb</td> <br />
</tr></table> <br />
<br />
</td></tr></table> <br />
<br />
That's how the code looks now, and it doesn't make the cells align vertically. <br />
<br />
Note: I do not want anyone telling me I should make it all one table. The table is much more complicated than what you can see here. <br />
<br />
Thanks, Alan.<!--content-->In each of your <td> tags, give it a width, and have the top and bottom tables correspond.<!--content-->Originally posted by Dave Clark <br />
What's the purpose of posting the same question twice?Wish people wouldn't do that... :(<!--content-->
 
Back
Top