What is the right way to define responsive design for mobile devices. let's assume that I want to make a general design for iPhone 4 (960*640) & for the common android (800 * 480).

Should I use media queries?

@media (max-width: 960px) and (min-width: 640px) //For iPhone landscape
@media (max-width: 640px) //For iPhone portrait

and should I take to consideration that the general android devices work on 800px (in landscape mode) and not 960px?

Since this is all new to me - the question is how to define CSS in the right way? What is the right paradigma?

Should I define it per a specific size (when I have 2 main CSS for above 960px & for bleow 960px) - or Should I define it per device (iphone or android)

link|improve this question

53% accept rate
Might I suggest html5boilerplate.com/mobile – Andrew Nov 27 '11 at 15:31
feedback

1 Answer

up vote 0 down vote accepted

A List Apart has a good article on this.

Scroll down to where it says:

These aren’t the style sheets you’re looking for

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.