作者文章

Chris Coyier

创始人、作家、设计师、垃圾邮件删除者、电子邮件个性化

指向文章“方向锁定”的直接链接

方向锁定

@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;
  }
}

由 Andreas Gotfredsen 发送……