您的位置:首页 > 移动开发

移动端媒介查询尺寸

2017-11-21 10:15 260 查看
/*iphone 4  screen-width:320px*/

@media only screen and (min-width: 320px) and (max-width: 360px){}

/*三星Galaxy S5  screen-width:360px*/

@media only screen and (min-width: 360px) and (max-width: 375px){}

/*iphone 6 && MI MIX  screen-width:375px*/

@media only screen and (min-width: 375px) and (max-width: 414px){}

/*iphone 6plus  screen-width:414px*/

@media only screen and (min-width: 414px) and (max-width: 768px){}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: