Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created February 23, 2016 03:29
Show Gist options
  • Save libo1106/d6f5d29ce14f0e6ff2a3 to your computer and use it in GitHub Desktop.
Save libo1106/d6f5d29ce14f0e6ff2a3 to your computer and use it in GitHub Desktop.
Media Query For FullPage Moible Web
// 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){
}
@libo1106
Copy link
Author

注意Android设备长宽比有所不一致

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment