bolock rotating the screen on your website with css

Solutions on MaxInterview for bolock rotating the screen on your website with css by the best coders in the world

showing results for - "bolock rotating the screen on your website with css"
Alessia
24 May 2018
1@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
2  html {
3    transform: rotate(-90deg);
4    transform-origin: left top;
5    width: 100vh;
6    overflow-x: hidden;
7    position: absolute;
8    top: 100%;
9    left: 0;
10  }
11}