您的位置:首页 > Web前端 > CSS

媒体查询常用样式表

2016-05-26 16:13 411 查看
横竖屏加载不同的css样式:

<linkrel="stylesheet"media="alland(orientation:portrait)"href="portrait.css">//竖放加载
<linkrel="stylesheet"media="alland(orientation:landscape)"href="landscape.css">//横放加载


//竖屏时使用的样式


<stylemedia="alland(orientation:portrait)"type="text/css">
#landscape{display:none;}
</style>


//横屏时使用的样式


<stylemedia="alland(orientation:landscape)"type="text/css">
#portrait{display:none;}
</style>



                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: