Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. iPhone 5 и 5S в portrait & landscape
  2. @media only screen
  3. and (min-device-width : 320px)
  4. and (max-device-width : 568px) { /* STYLES GO HERE */}
  5.  
  6. iPhone 5 и 5S в landscape
  7. @media only screen
  8. and (min-device-width : 320px)
  9. and (max-device-width : 568px)
  10. and (orientation : landscape) { /* STYLES GO HERE */}
  11.  
  12. iPhone 5 и 5S в portrait
  13. @media only screen
  14. and (min-device-width : 320px)
  15. and (max-device-width : 568px)
  16. and (orientation : portrait) { /* STYLES GO HERE */ }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement