博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iPhone6&iPhone6 Plus CSS3 Media Queries
阅读量:6994 次
发布时间:2019-06-27

本文共 1270 字,大约阅读时间需要 4 分钟。

hot3.png

CSS3 Media Queries查询

mediaiPhone6&iPhone6 Plus CSS3 Media Queries

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) {     /*iPhone 6 Portrait*/}@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : landscape) {     /*iPhone 6 landscape*/}@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : portrait) {     /*iPhone 6+ Portrait*/}@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : landscape) {     /*iPhone 6+ landscape*/}@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px){     /*iPhone 6 and iPhone 6+ portrait and landscape*/}@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px) and (orientation : portrait){     /*iPhone 6 and iPhone 6+ portrait*/}@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px) and (orientation : landscape){     /*iPhone 6 and iPhone 6+ landscape*/}

http://nmsdvid.com/snippets/

转载于:https://my.oschina.net/u/1260221/blog/646346

你可能感兴趣的文章