企业🤖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%; } } ~~~