0

What's the difference?

(max-width:320px) and (max-device-width:320px)

I try the max-width i think its only work on window resize

And the max-device-width only works on mobile screen? Its true?

user3327101
  • 171
  • 1
  • 3
  • 8

1 Answers1

3

If you would Google or search on Stackoverflow, you would find this page:

What is the difference between max-device-width and max-width for mobile web?

Look what it says to you:

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.

Community
  • 1
  • 1
Siyah
  • 2,852
  • 5
  • 37
  • 63