css only landscape mode code example
Example 1: how to lock device orientation using css and javascript
@media only screen and (orientation:portrait){
body {
height: 100vw;
transform: rotate(90deg);
}
}
Example 2: detect portrait landscape css
@media screen and (orientation:portrait) { … }
@media screen and (orientation:landscape) { … }