Advertisement
perazite

MediaQuery iPad only

Jan 4th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  2. /* your css rules for ipad portrait */
  3. }
  4. @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
  5. /* your css rules for ipad landscape */
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement