One of the more difficult problems faced by many webmasters is how to handle all of the different screen resolutions which are available. In case you are unfamiliar with the term, screen resolution is the height and width of the monitor in pixels. Most people (over 50%) use monitors which are 800 by 600 pixels in size.
540x384 - Believe it or not, this is the resolution for WebTV.
640x480 - For smaller, older screens.
800x600 - The vast majority of people have monitors set to this size.
1024x768 - This size is becoming more popular, but still on a 17 inch monitor the characters on the screen are just too small for many people.
1152x900 - A very large, 21 inch monitor would support this size.
1280x1024 - Now you are getting very large.
With all of these different screen resolutions, how do you make your website look good without adding those annoying horizontal scroll bars to your site?
Here are some good rules along with some HTML code samples to help you out.
<table border="1" width="100%">
<tr>
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
<tr>
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</table>
<table border="1" width="400">
<tr>
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
<tr>
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</table>
Unless otherwise noted, all photos and text is Copyright © Richard G Lowe, Jr.