Answers for "bolock rotating the screen on your website with css"

CSS
1

bolock rotating the screen on your website with css

@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;
  }
}
Posted by: Guest on April-30-2021

Code answers related to "bolock rotating the screen on your website with css"

Browse Popular Code Answers by Language