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

前端 未结 8 1951
盖世英雄少女心
盖世英雄少女心 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:37

    Don't use device-width/height anymore.

    device-width, device-height and device-aspect-ratio are deprecated in Media Queries Level 4: https://developer.mozilla.org/en-US/docs/Web/CSS/@media#Media_features

    Just use width/height (without min/max) in combination with orientation & (min/max-)resolution to target specific devices. On mobile width/height should be the same as device-width/height.

提交回复
热议问题