
Originally Posted by
Chris Z
yup, Zenax is right, so if you want to do table width's in percentages or w/e, you'd do
HTML Code:
<table style="width:15%;">
you can also use this on <tr>'s and <td>'s
only good idea to use height(because he is talking about height) for table, is if you have only one free-height row:
HTML Code:
<table style="height:100%; width:400 px;">
<tr style="height:200px;">
<td>Header</td>
</tr>
<tr> <!-- Free height, will be [height of window] - [fixed heights] -->
<td>Content</td>
</tr>
<tr style="height: 100px;">
<td>Footer</td>
</tr>
</table>
This should work... (Not guaranteed)