TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:Re: Web page displays and screen resolution From:"Jeanne A. E. DeVoto" <jaed -at- JAEDWORKS -dot- COM> Date:Mon, 8 Mar 1999 23:31:19 -0800
At 11:05 PM -0800 3/8/99, Debbie Pesach wrote:
>Since (I think) the issue is not screen size but screen resolution,
>could you brilliant denizens please give me a quick tutorial on what
>determines how web pages are displayed and what would be considered the
>best resolution to set the pages.
I'll give a simple answer: don't even try.
If you avoid abusing the table construct to hard-code a pixel width for a
page, the browser will flow the content to whatever the user's window size
may be. And since there is no way you can control or predict the window
size, it is never safe to try to impose a fixed pixel width. If the user's
window is larger than that width, you'll be wasting screen space (and
possibly causing an unrealistically short line length for text if the user
has chosen a large font size). If the window is narrower than your page's
width, the user must scroll horizontally, back and forth for each line of
text or chunk of information, which is even worse.
Many web designers who come from a print/graphic-design background want to
set a pixel width almost reflexively, because one of the first questions a
print designer asks is "What size paper do I have to work with?" But it's
an approach that doesn't carry over well to web design.