- <meta charset="UTF-8" />
- <meta name="renderer" content="webkit" />
- <meta http-equiv="X-UA-Compatible" content="IE=EDGE, chrome=1">
- <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
- <meta name="msapplication-tap-highlight" content="no" />
- <meta name="format-detection" content="telephone=no" />
- /@media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5,因为5和4的屏幕宽度一样 */}
- @media only screen and (max-device-width :480px){ }
- @media only screen and (min-device-width :481px){ }
- /*6*/
- @media (min-device-width : 375px) and (max-device-width : 667px) and (-webkit-min-device-pixel-ratio : 2){ }
- /*6+*/
- @media (min-device-width : 414px) and (max-device-width : 736px) and (-webkit-min-device-pixel-ratio : 3){ }
- /*魅族*/
- @media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 2.5){ }
- /*mate7*/
- @media only screen and (min-device-width :1080px) and (-webkit-min-device-pixel-ratio : 3){ }
- /*4 4s*/
- @media only screen and (device-height :480px) and (-webkit-device-pixel-ratio:2){ }
- @media screen and (min-width: 320px) and (max-width: 480px) { }
- /* 平板之类的宽度 1024 以下设备 */
- @media only screen and (min-width: 321px) and (max-width: 1024px) {
- body {
- background: blue;
- }
- }
- /* PC客户端或大屏幕设备: 1028px 至更大 */
- @media only screen and (min-width: 1029px) {
- body {
- background: green;
- }
- }
- /* 竖屏 */
- @media screen and (orientation:portrait) and (max-width: 720px) {对应样式}
- /* 横屏 */
- @media screen and (orientation:landscape){对应样式}
- iPhone5s 504*320
媒体查询-手机尺寸参考
原创
©著作权归作者所有:来自51CTO博客作者猫哥weber的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
媒体查询
越来越喜欢相应式布局了
css 3 媒体查询 -
CSS:媒体查询
媒体查询
媒体查询 html css 背景颜色 css样式 -
ios 媒体查询 媒体查询设置
1媒体查询:由设备类型、监测设备特性表达式构成。 语法: @media 设备类型[all\screen] and (条件表达式){ &nb
ios 媒体查询 html ios safari -
element 媒体查询
目录一、前言二、首页实现及效果图1.效果图 2.项目结构、设计说明 3.顶部菜单 4.首页轮播图 5.歌单推荐三、歌单实现 1.效果图 2.轮播图动态切换效果3.歌单详情四、 专辑1.专辑首页-效果图 2.专辑详情-效果图 五、榜单1.榜单-效果图2.歌曲详情六、歌手列表1. 列表效果图2.歌手详情
element 媒体查询 elementui 前端 javascript vue.js