Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /*
  2. 768px - 1280px
  3. WXGA - (Windows Phone com DPI alta)
  4. */
  5. @media only screen
  6. and (min-device-width: 768px)
  7. and (max-device-width: 1280px)
  8. and (orientation: portrait){}
  9.  
  10. @media only screen
  11. and (min-device-width: 768px)
  12. and (max-device-width: 1280px)
  13. and (orientation: landscape){}
  14.  
  15. /*
  16. 1024px - 768px
  17. XGA - (Ipad)
  18. */
  19. @media only screen
  20. and (min-device-width: 768px)
  21. and (max-device-width: 1024px)
  22. and (orientation: portrait){}
  23.  
  24. @media only screen
  25. and (min-device-width: 768px)
  26. and (max-device-width: 1024px)
  27. and (orientation: landscape){}
  28.  
  29. /*
  30. 1366px - 768px
  31. WXGA - (Ultrabook)
  32. */
  33. @media only screen
  34. and (min-device-width: 768px)
  35. and (max-device-width: 1366px)
  36. and (orientation: portrait){}
  37.  
  38. @media only screen
  39. and (min-device-width: 768px)
  40. and (max-device-width: 1366px)
  41. and (orientation: landscape){}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement