Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are a lot different media queries for mobile screen sizes. It can be overwhelming to accomodate all of them when designing a responsive mobile site. Which are the most important ones to use when designing for mobile? I found this article that does a pretty good job of outlining the available media queries: http://css-tricks.com/snippets/css/media-queries-for-standard-devices/.

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
share|improve this question
There's no correct answer to this really, it's pretty much up you you to decide. Personally I only set my personal website to have one media query of max-width:480px for mobile devices but that's just what I was happy with. You may want to have different layouts for many different sizes. – Billy Moat Aug 20 '12 at 22:15
This can't really be answered, it's a very subjective question. You should create breakpoints in your design when it looks bad rather than trying to target device widths. Responsive design is about looking past devices and make the sites future friendly. As a 'best practice' your styles should be defined without a media query and build up using min-width to override styles as the screen gets larger. This is a mobile first approach and is the most widely backed approach to responsive design. – justinavery Aug 21 '12 at 2:38

1 Answer

up vote 9 down vote accepted

I'd recommend taking after Twitter's Bootstrap with just these four media queries:

/* Landscape phones and down */
@media (max-width: 480px) { ... }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }

/* Large desktop */
@media (min-width: 1200px) { ... }
share|improve this answer
2  
Maybe a stupid question, but what happends to the people with a desktop of 1024 width? or people with a resized window to 1000px – JP Hellemons Jan 4 at 15:41
If there is no backdrop css which is used by default (rules without @media(...){...} filter) they are going to see no css styles at all IMHO. It would be better if the code was like /* Large desktop */ @media (min-width: 980px) { ... } – phippu Feb 12 at 16:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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