hdogg
09-20-2007, 11:53 AM
Here's the Problem that has been stumping me:
I want each table to display the max table width.
So table 2's size would match table 1's....
And if table 2's has some bigger cells than table one's respective column would match.
<!-- Table 1-->
Full Months
<table>
<td>January</td>
<td>February</td>
<td>March</td>
<td>April</td>
<td>May</td>
<td>June</td>
<td>July</td>
<td>August</td>
<td>Septemper</td>
<td>October</td>
<td>November</td>
<td>December</td>
</tr>
</table>
<!-- Table 2-->
Abreviated Months
<table>
<td>Jan</td>
<td>Feb....Large column</td>
<td>Mar</td>
<td>Apr</td>
<td>May</td>
<td>Jun</td>
<td>Jul</td>
<td>Aug</td>
<td>Sep</td>
<td>Oct</td>
<td>Nov</td>
<td>Dec</td>
</tr>
</table>
I want each table to display the max table width.
So table 2's size would match table 1's....
And if table 2's has some bigger cells than table one's respective column would match.
<!-- Table 1-->
Full Months
<table>
<td>January</td>
<td>February</td>
<td>March</td>
<td>April</td>
<td>May</td>
<td>June</td>
<td>July</td>
<td>August</td>
<td>Septemper</td>
<td>October</td>
<td>November</td>
<td>December</td>
</tr>
</table>
<!-- Table 2-->
Abreviated Months
<table>
<td>Jan</td>
<td>Feb....Large column</td>
<td>Mar</td>
<td>Apr</td>
<td>May</td>
<td>Jun</td>
<td>Jul</td>
<td>Aug</td>
<td>Sep</td>
<td>Oct</td>
<td>Nov</td>
<td>Dec</td>
</tr>
</table>