Skip to content

Instantly share code, notes, and snippets.

@suxiaogang
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suxiaogang/50339cdfa3512522959b to your computer and use it in GitHub Desktop.
Save suxiaogang/50339cdfa3512522959b to your computer and use it in GitHub Desktop.
responsive.css
/*iPhone < 5*/
@media screen and (device-aspect-ratio: 2/3) {
.content{
width: 100%;
}
}
/*iiPhone 5*/
@media screen and (device-aspect-ratio: 40/71) {
.content{
width: 90%;
}
}
/*iPad*/
@media screen and (device-aspect-ratio: 3/4) {
.content{
width: 80%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment