Skip to content

Instantly share code, notes, and snippets.

@Lego2012
Last active September 21, 2022 14:47
Show Gist options
  • Save Lego2012/e075242bef3a79c10b5e507f6bef7c87 to your computer and use it in GitHub Desktop.
Save Lego2012/e075242bef3a79c10b5e507f6bef7c87 to your computer and use it in GitHub Desktop.
iPad Orientation
<style>
@media only screen and (max-device-width: 1024px) and (orientation:portrait) {
.landscape { display: none; }
}
@media only screen and (max-device-width: 1024px) and (orientation:landscape) {
.portrait { display: none; }
}
</style>
<h1 class="portrait">Your device orientation is "portrait"<h1>
<h1 class="landscape">Your device orientation is "landscape"<h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment