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

I need to develop some html pages for iphone/android phones, but what is the difference between max-device-width and max-width ? I need to use different css for different screen size.

@media all and (max-device-width: 400px)

@media all and (max-width: 400px)

What's the difference?

share|improve this question

4 Answers

up vote 54 down vote accepted

max-width is the width of the target display area, e.g. the browser

max-device-width is the width of the device's entire rendering area, i.e. the actual device screen

Same goes for max-height and max-device-height naturally.

share|improve this answer
This one make sense. – virsir Sep 5 '11 at 1:24
1  
If you want to see the change when resizing your browser, use max-width for development, although max-device-width is more accurate for production. – John Magnolia Mar 24 at 20:15

max-width refers to the width of the viewport and can be used to target specific sizes or orientations in conjunction with max-height. Using multiple max-width (or min-width) conditions you could change the page styling as the browser is resized or the orientation changes on a device like an iPhone.

max-device-width refers to the viewport size of the device regardless of orientation, current scale or resizing. This will not change on a device so cannot be used to switch style sheets or CSS directives as the screen is rotated or resized.

share|improve this answer
2  
This answer made it "click" for me better than the accepted answer. It sounds like for most applications, max-width and max-height will be the ones to use. – hotshot309 Jun 13 '12 at 16:42
@JackieChiles makes a good point in another SO thread that one should consider (regarding mobile styles appearing on larger devices): stackoverflow.com/questions/8564752/… – hotshot309 Jun 13 '12 at 18:18
1  
This good answer is not complete: orientation swaps device-width and device-height on Android but not iOS: see quirksmode.org/blog/archives/2010/04/the_orientation.html . – Braden Anderson Dec 7 '12 at 0:34

the difference is that max-device-width is all screen's width and max-width means the space used by the browser to show the pages. But another important difference is the support of android browsers, in fact if u're going to use max-device-width this will work only in Opera, instead I'm sure that max-width will work for every kind of mobile browser (I had test it in Chrome, firefox and opera for ANDROID).

share|improve this answer

Max device width can be used as

@media all and (max-device-width: 400px) {
    /* styles for screens with a maximum width of 400px */
}

The max-width is the width of the target display area.

share|improve this answer
1  
@media all and (max-width: 400px) { } What's the difference – virsir Jul 22 '11 at 8:57

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.