<html>
<title>CodeAve.com(Table Width - Pixels and
Percent)</title>
<body bgcolor="#FFFFFF">
<!-- Table with width set by pixels
Valid values are 1 to almost anything.
Any value greater than the users browser width
will cause the horizontal scrollbar to appear at the bottom
of the browser-->
<table width="300"
border="1"
>
<tr><td>
Table width set to 300 pixels
</td></tr>
</table>
<p>
<!-- Table with width set by percent
valid values are 1 to 100
This table will adjust to use 85% of the browser area -->
<table width="85%"
border="1"
>
<tr><td>
Table width set to 85 percent
</td></tr>
</table>
</body>
</html>
|