|
By Eddy R.
(7/21/99)
A
good way to suit everyone's viewing needs, is to design sites that
have tables with width sizes set in percents instead of fixed
numbers.
Setting table widths in percents,
will allow your web pages to adjust to the resolution at which the
systems of your site's visitors are running.
To accomplish this effect, make
sure your HTML code looks like this:
<html>
<head>
<title>Table Sizes</title>
</head>
<body>
<table border="0" width="100%"
cellpadding="0" cellspacing="0">
<tr>
<td width="100%"></td>
</tr>
</table>
</body>
</html>
The code above is just an example
to show you how to assign percents to table widths. You may change
other attributes as needed.
|