so
HTML Code:
<table width="100">
<tr>
<td></td>
<td rowspan="3"></td>
<td rowspan="3"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
is what you have...
and you want the the bottom <td> to encompass the entire remainder of whatever the other rowspan's encompass?
I think you can do this by setting the height's of the first two explicitly or setting the third to a % (66% perhaps)
HTML Code:
<table>
<tr>
<td height="200"></td>
<td rowspan="3"></td>
<td rowspan="3"></td>
</tr>
<tr>
<td height="150"></td>
</tr>
<tr>
<td ></td>
</tr>
if you do itthis way the third one will continue to the bottom of however long the other collums are.
or
HTML Code:
<table width="100">
<tr>
<td></td>
<td rowspan="3"></td>
<td rowspan="3"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td height="66%"></td>
</tr>
Bookmarks