Min's blog

I choose to see the beauties in the world.

导航

移动端

Posted on 2017-10-25 16:26  Min77  阅读(108)  评论(0编辑  收藏  举报

媒体查询常用样式表:
```html
    <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">    // 竖放加载
    <link rel="stylesheet" media="all and (orientation:landscape)"href="landscape.css">   // 横放加载
```
    竖屏时使用的样式
```html
    <style media="all and (orientation:portrait)" type="text/css">
        #landscape { display: none; }
    </style>
```
    //横屏时使用的样式
```html
    <style media="all and (orientation:landscape)" type="text/css">
        #portrait { display: none; }
    </style>
```