A little dab'll do ya
Code Snippets
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"> <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
This is pretty sweet wish i had an ipad to try it out on..
I would add a bit more queries to it. This would have the same effect on the iPhone.
That’s what I’ve been looking for – I’ve thought it ridiculous that you need javascript to apply some styling based on orientation.
Something to keep in mind is adding a check for the platform like below
if(navigator.platform == 'iPad' || navigator.platform == 'iPhone') {
document.write("");
document.write("");
}
This way it doesn’t get loaded unless the platform matches.
in the “‘s place the LINKs as listed above. Not sure why they didn’t show. :-/