首页 > 其他 > 详细

媒体查询,横竖屏

时间:2019-09-09 16:08:20      阅读:93      评论:0      收藏:0      [点我收藏+]

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 }

 



媒体查询,横竖屏

原文:https://www.cnblogs.com/vaso-me/p/11492193.html

(3)
(3)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!