Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.41 KB | None | 0 0
  1. /* Beware! Tested in FF only. */
  2. /* Works: */
  3. @media only screen and (min-device-width : 768px) and (max-device-width : 1024px),
  4. @media screen and (min-width: 671px) and (max-width: 800px) { /* styles */ }
  5.  
  6. /* Doesn't work: */
  7. @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation:portrait),
  8. @media screen and (min-width: 671px) and (max-width: 800px) { /* styles */ }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement