Skip to content

Instantly share code, notes, and snippets.

@andreystarkov
Created July 29, 2012 17:53
Show Gist options
  • Save andreystarkov/3200590 to your computer and use it in GitHub Desktop.
Save andreystarkov/3200590 to your computer and use it in GitHub Desktop.
iPad Orientation CSS
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
<h1 id="portrait">You're Viewing in Portrait Mode</h1>
<h1 id="landscape">You're Viewing in Landscape</h1>
#landscape {display:none}
landscape.css: #landscape {display:none}
portrait.css: #landscape {display:none}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment