Created
February 23, 2016 03:29
-
-
Save libo1106/d6f5d29ce14f0e6ff2a3 to your computer and use it in GitHub Desktop.
Media Query For FullPage Moible Web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// iPhone4 WeChat WebView | |
@media screen and (max-height:416px){ | |
} | |
// iPhone5 WeChat WebView | |
@media screen | |
and (min-height: 417px) | |
and (max-height: 504px){ | |
} | |
// iPhone6 WeChat WebView | |
@media screen | |
and (min-height: 505px) | |
and (max-height: 603px){ | |
} | |
// iPhone6 Plus && More Large Devices WeChat WebView | |
@media screen | |
and (min-height: 604px){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
注意Android设备长宽比有所不一致