ecross
11-21-2003, 08:46 AM
When defining tables width and height, which is better? Defining by number of pixels or by percentage.
For example:
<table width="500" height="600">
<tr>
<td></td>
</tr>
</table>
-or-
<table width="100%" height="100%">
<tr>
<td></td>
</tr>
</table>
For example:
<table width="500" height="600">
<tr>
<td></td>
</tr>
</table>
-or-
<table width="100%" height="100%">
<tr>
<td></td>
</tr>
</table>