ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### **强制横屏** > 编写时以横屏布局即可 ~~~ .landscape-container { position: absolute; overflow: hidden; } // 竖屏 @media screen and (orientation: portrait) { .landscape-container { width: 100vh; height: 100vw; top: calc((100vh - 100vw) / 2); left: calc((100vw - 100vh) / 2); transform: rotate(90deg); transform-origin: 50% 50%; } } // 横屏 @media screen and (orientation: landscape) { .landscape-container { width: 100vw; height: 100vh; top: 0; left: 0; transform: none; transform-origin: 50% 50%; } } ~~~