媒体查询,横竖屏

橙三吉。 提交于 2020-02-02 06:21:23

orientation

语法:

orientation:portrait | landscape

portrait:指定输出设备中的页面可见区域高度大于或等于宽度

landscape:除portrait值情况外,都是landscape

 1 @media screen and (orientation: portrait){
 2   .test::after {
 3     content: "竖屏";
 4   }
 5 }
 6 @media screen and (orientation: landscape){
 7   .test::after {
 8     content: "横屏";
 9   }
10 }

 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!