Guest User

Untitled

a guest
Jan 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1.  
  2. /* iPads (portrait and landscape) ----------- */
  3. @media only screen
  4. and (min-device-width : 768px)
  5. and (max-device-width : 1024px) {
  6. /* Styles */
  7. }
  8.  
  9.  
  10.  
  11. /* iPads (landscape) ----------- */
  12. @media only screen
  13. and (min-device-width : 768px)
  14. and (max-device-width : 1024px)
  15. and (orientation : landscape) {
  16. /* Styles */
  17. }
  18.  
  19.  
  20.  
  21. /* iPads (portrait) ----------- */
  22. @media only screen
  23. and (min-device-width : 768px)
  24. and (max-device-width : 1024px)
  25. and (orientation : portrait) {
  26. /* Styles */
  27. }
Add Comment
Please, Sign In to add comment