Created
July 29, 2012 17:53
-
-
Save andreystarkov/3200590 to your computer and use it in GitHub Desktop.
iPad Orientation CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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