Skip to content

Instantly share code, notes, and snippets.

@icecreamliker
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save icecreamliker/3fd4bc03a70c6455ab40 to your computer and use it in GitHub Desktop.

Select an option

Save icecreamliker/3fd4bc03a70c6455ab40 to your computer and use it in GitHub Desktop.
media query for ipad, iphone, etc.

http://stephen.io/mediaqueries

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {

}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (max-device-height: 568px) and (orientation : portrait) { /* iphone 5, 5s*/ }

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (max-device-height: 480px) and (orientation : portrait) { /* iphone 4, 4s, 3, 2, 1 */ }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment