Most designers use 1024x768 as a baseline for website development. That allows them to use css grid systems like 960 & blueprint to easily outline content. Is there similar baseline resolution for designing for mobile phones?

The majority of users will be using iphone, android, and blackberry phones.

link|improve this question

feedback

4 Answers

up vote 12 down vote accepted

320 by 480 is the common screen resolution for new mobile devices.

iPhone Website Compatibility

Android Display Metrics

That being said if you want to support the majority of mobile devices, you may want to support multiple resolutions.

link|improve this answer
feedback

You can

  1. get the screen sizes for the devices you plan to support,
  2. Create say, 2-3 versions of your site and detect useragent string and direct user to one of these sites.

With android, iphone and blackerry devices there is not large difference in a screen sizes. With a litle foresight and design you may be able to have all these handset work on one mobile website (for example it would be fair to say that the width would be 240 pixels or greater and design accordingly)

However if you plan to go further than there these platforms there is a world of hurt awaiting you, (J2ME, BREW, Symbian, WinMo and 120x160, 176x220 screen sizes etc)

link|improve this answer
feedback

if you are using apache ApacheMobileFilter can help to determine the actual device screen size

link|improve this answer
feedback

Simply, no.

Lots of information here. http://www.quirksmode.org/mobile/

There are just too many devices with too many different screens to assume a common resolution. While it may be true that 320 x 480 can be found on many devices, it is by no means "common". You have to use flexible design principles and then use media queries or js detection to add a class to adjust your display to the proper dimensions. This is part of what makes mobile so difficult to wrangle right now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.