Skip to content

Instantly share code, notes, and snippets.

@farshidrezaei
Created September 3, 2019 12:42
Show Gist options
  • Save farshidrezaei/e70203fea5158729734443b9c645c2fd to your computer and use it in GitHub Desktop.
Save farshidrezaei/e70203fea5158729734443b9c645c2fd to your computer and use it in GitHub Desktop.
Orientation Lock
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
html {
transform: rotate(-90deg);
transform-origin: left top;
width: 100vh;
overflow-x: hidden;
position: absolute;
top: 100%;
left: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment