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

前端 未结 8 1965
盖世英雄少女心
盖世英雄少女心 2020-11-22 08:56

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 diffe

8条回答
  •  醉酒成梦
    2020-11-22 09:40

    If you are making a cross-platform app (eg. using phonegap/cordova) then,

    Don't use device-width or device-height. Rather use width or height in CSS media queries because Android device will give problems in device-width or device-height. For iOS it works fine. Only android devices doesn't support device-width/device-height.

提交回复
热议问题