So sperren Sie die Geräteorientierung mithilfe von CSS und JavaScript

@media only screen and (orientation:portrait){
  body {
    height: 100vw;
    transform: rotate(90deg);
  }
}
Itchy Ibis