Skip to content

Instantly share code, notes, and snippets.

@cave2006
Created June 7, 2019 11:16
Show Gist options
  • Save cave2006/92f48a46b54436e2b7686d4dd1fdf8b3 to your computer and use it in GitHub Desktop.
Save cave2006/92f48a46b54436e2b7686d4dd1fdf8b3 to your computer and use it in GitHub Desktop.
iPhone 5 и 5S медиа запросы
iPhone 5 и 5S в portrait & landscape
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px) { /* STYLES GO HERE */}
iPhone 5 и 5S в landscape
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : landscape) { /* STYLES GO HERE */}
iPhone 5 и 5S в portrait
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : portrait) { /* STYLES GO HERE */ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment