Forum Moderators: mack

Message Too Old, No Replies

the size of a webpage in pixels?

the size of a webpage in pixels?

         

guitariststuff

11:02 am on Oct 5, 2007 (gmt 0)

10+ Year Member



Does anyone know what the standard size of a webpage is in pixels without having to scroll down or across. My guess was roughly 1050px across and 600px down, is that correct, its just that i want my homepage to take up the whole page but so that no scrolling is involved left or right to see the rest of it.

if it varies between computers is there a way of using tables so that it automatically takes up the whole size of the screen with no scrolling needed, like a 100% width or height command in CSS or sumthin?

justgowithit

3:12 pm on Oct 5, 2007 (gmt 0)

10+ Year Member



Popular screen resolution [google.com] changes over time as monitors improve.

There's been a lot of posts about fluid layouts [google.com] and page design that you'll find helpful.

jtara

4:16 pm on Oct 5, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Does anyone know what the standard size of a webpage is in pixels without having to scroll down or across.

There is no standard. See above.

if it varies between computers is there a way of using tables so that it automatically takes up the whole size of the screen

It's important to distinguish between "screen" and "browser window". (Specifically, the content portion of the browser window.)

For one, the browser uses-up some space with the title bar, buttons, etc.

While it's possible to use Javascript to force the browser to full-screen, it's considered non-user-friendly and annoying. And it will immediately make your users suspicious that you are about to install spyware, etc.

So, as to "screens" - do yourself a big favor, and just don't go there!

One more thing about screen sizes - don't assume that users browse with their browsers maximized to cover the entire screen. Some do. Some don't.

like a 100% width or height command in CSS or sumthin?

Yes, this is possible using either tables or CSS. Both support relative sizing in percentage of content window width/height. And, IMO, this is much preferable in almost all cases to designs that depend on a fixed pixel width or height.

There are many considerations to deal with - such as what to do if the user sizes the window such that your content just won't fit. There are many books written on the subject of intelligent CSS layout.