How to change meta viewport based on device resolution? we can use media queries to target different resolution screens, how to set up different types of viewing?
how my demo site works on iPad with this meta tag
<meta name="viewport" content="width=device-width, user-scalable=no,initial-scale=1, maximum-scale=1, minimum-scale=1" />
but for iphone4 i need it
<meta name="viewport" content="width=device-width, user-scalable=no,initial-scale=.5, maximum-scale=.5, minimum-scale=.5" />
source
share