Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Commonly used pixel sizes for webpages and their pros/cons

Tags:

What are the most commonly used pixel sizes (primarily widths) and what are there advantages and disadvantages?

How can I best find a happy medium to give a good experience to people with a wide variety of monitor sizes?

An answer with an explanation rather than just the size would be greatly appreciated.

like image 364
Nachshon Schwartz Avatar asked Jul 26 '11 15:07

Nachshon Schwartz


People also ask

What is the ideal pixel size for a website?

2500 pixels width is ideal in most cases. You don't need to resize your images if they're wider than 2500px and meet our other specifications. Images less than 1500px wide may appear blurry. We suggest different widths for site logos, browser icons, email campaigns, and animated .

What is a good size for a webpage?

Ideally, you want to keep your HTML DOM page size to around 100 kb or less, depending on your niche. Pages could be larger in some niches; in ecommerce, for example, it's not uncommon to see pages around 150kb-200kb, depending on how many product images are on the page.

What is the most common screen resolution for web design?

1280×720 is considered to be the most suitable screen resolution for the desktop website version. Usually, the desktop version provides the best user experience and is supposed to be the most convenient and wide.


3 Answers

the most grids use a width of 960px. (When the design has a fixed width). When you take a look at global statistics 1024 range resolutions are still the most common: http://gs.statcounter.com/#resolution-ww-monthly-201006-201106

Do not use 1000 width. (You have to count in the border width of the browser and the scrollbar, in certain browsers / OS they are larger then in others)

I don't think there is a ultimate resolution that's why you should check the statistics on the concerned webpage (if the page already exists), to decide what resolution is most appropriate. If you can't do this you can check stats for you target market on http://gs.statcounter.com/

Or even better use responsive webdesign: http://www.alistapart.com/articles/responsive-web-design/

Since max- and min-width attributes in CSS, you can target whatever resolution you want, if you have the time / budget for it of course.

like image 199
meo Avatar answered Oct 04 '22 15:10

meo


960px width is a good standard, as others have already elaborated on.

However, one should keep in mind that websites are viewed on a lot more than just desktops these days, so the answer could vary based on what the site is being styled for. For example, 960px would be a poor width for a mobile stylesheet.

One resource that could help you is www.resizemybrowser.com. (There is a similar tool built into Firebug.)

At the end of the day, I think 960px is a good standard, but really, "it depends". :)

like image 42
Jeremy Wiggins Avatar answered Oct 04 '22 14:10

Jeremy Wiggins


960 is a standard for fixed-width websites. It is to ensure that 1024x768 resolution will pick it up easily. As for height - it does not really matter.

like image 23
Stan Avatar answered Oct 04 '22 13:10

Stan