coding question

liunx

Guest
When defining tables width and height, which is better? Defining by number of pixels or by percentage.<br />
<br />
For example:<br />
<br />
<table width="500" height="600"> <br />
<tr><br />
<td></td><br />
</tr><br />
</table><br />
<br />
-or- <br />
<br />
<table width="100%" height="100%"><br />
<tr><br />
<td></td><br />
</tr><br />
</table><!--content-->Neither and both. <br />
That is more a matter of preference. I like to use a number like 792 but often I put tables inside of tables so any table I put inside my table I will set to %100 so it will fill the cell it is in from edge to edge.<!--content-->
 
Back
Top