Last active
September 21, 2022 14:47
-
-
Save Lego2012/e075242bef3a79c10b5e507f6bef7c87 to your computer and use it in GitHub Desktop.
iPad Orientation
This file contains hidden or 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
<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