📜  bolock 使用 css 代码示例在您的网站上旋转屏幕

📅  最后修改于: 2022-03-11 14:47:35.040000             🧑  作者: Mango

代码示例1
@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;
  }
}