Forum Moderators: open
I've used a table height percentage of 100 and specified row heights everywhere that I wanted to constrict, leaving the remaining row to fill whatever was left.
Hope that's what you mean, moreover, hope it helps some!
Using CSS, you can add an inline style to the <table> like this:
table-layout: fixed ;
this leaves you apparently able to specify width *and* height within the style tag.
just found out though, Netscape don't like it!
(edited by: sarkye at 5:07 am (gmt) on Nov. 24, 2001)
<table border="1">
<tr>
<td valign="top">item a</td>
</tr>
<tr>
<td valign="top">item b</td>
</tr>
<tr>
<td valign="top">item c</td>
</tr>
<tr>
<td valign="top">item d</td>
</tr>
<tr>
<td valign="bottom">item e</td>
</tr>
</table>
</td>
<td valign="top">
<table border="1">
<tr>
<td valign="top">item 1</td>
</tr>
<tr>
<td valign="bottom">
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
::<br>
item 2</td>
</tr>
</table>
</td>
</tr>
</table>