Skip to content

Instantly share code, notes, and snippets.

@mberizzo
Last active August 29, 2015 14:17
Show Gist options
  • Save mberizzo/4bcf9e3b2fe7dc188dd4 to your computer and use it in GitHub Desktop.
Save mberizzo/4bcf9e3b2fe7dc188dd4 to your computer and use it in GitHub Desktop.
CSS Media Queries
/*-----------start MEDIA QUERIES-----------*/
/*start IPHONE*/
/*@media (min-width: 240px) and (max-width: 479px) {*/
@media (min-width: 240px) and (max-width: 767px) {
}
/*end IPHONE*/
/*start IPHONE VERTICAL*/
@media (min-width: 240px) and (max-width: 479px) {
}
/*start IPHONE VERTICAL*/
/*start IPHONE HORIZONTAL*/
@media (min-width: 480px) and (max-width: 767px) {
}
/*end IPHONE HORIZONTAL*/
/*start IPAD */
@media (min-width: 768px) and (max-width: 1199px) {
}
/*end IPAD */
/*start IPAD VERTICAL*/
@media (min-width: 768px) and (max-width: 979px) {
}
/*end IPAD VERTICAL*/
/*start IPAD HORIZONTAL*/
@media (min-width: 980px) and (max-width: 1199px){
}
/*end IPAD HORIZONTAL*/
/*start BIG SCREEN*/
@media (min-width: 1200px){
}
/*end BIG SCREEN*/
/*-----------end MEDIA QUERIES-----------*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment