Evik James
Evik James

Reputation: 10483

Is there a new standard web page width? How many pixels?

I am just building a new site for a client and want to make sure I serve him best. I am at the process of determining the page width.

First, for the last few years, my pages have been typically about 900 pixels wide and centered in the middle of the browser window. This works really well. That's not the approach I am taking now though. My old standard of 900-1000 pixels seems really small on today's monitors.

I am creating a three column page layout. The leftmost column needs to stick to the left side of the browser. If the browser is set really wide, there is a huge vertical dead zone on the right side of the browser. That's not really a problem since I doubt most people open their browser to 100% wide on a 1600px monitor.

My question is this: Is there a standard pixel width that you assume 90% of the people use to view a web site?

Upvotes: 9

Views: 73071

Answers (3)

Wabbitseason
Wabbitseason

Reputation: 5691

You can also consider using a so called "responsive" approach:

http://978.gs/

The idea is that using media queries (and substitute techniques) you adapt your layout to the viewport of your visitor, so ideally you can offer the best content to everyone.

Upvotes: 7

Michael
Michael

Reputation: 4390

960 pixels!

It has plenty of denominations to allow you to split your page up into various columns. I suggest taking a look at http://960.gs

I know, as you said that it is small compared to your monitor, however there are a lot of users (the majority) who would benefit from keeping this resolution.

Upvotes: 14

Brad
Brad

Reputation: 163240

If you made fluid-width pages, this wouldn't be an issue.

Monitors these days are all over the place. You will have to check your analytics to see what your particular audience is using.

If I make a fixed-width page, I usually still shoot for 980px. There are lots of netbooks popping up with resolutions of around 1024x800 and what not. Again though, there is no specific answer to this question, other than making pages without a fixed-width, or checking your own audience.

Upvotes: 4

Related Questions