Skip to content

Instantly share code, notes, and snippets.

@cristianstan
Created March 13, 2014 14:19
Show Gist options
  • Select an option

  • Save cristianstan/9529373 to your computer and use it in GitHub Desktop.

Select an option

Save cristianstan/9529373 to your computer and use it in GitHub Desktop.
CSS: Responsive intervals v2
/* ### Responsive Max_319px ### */
@media only screen and (max-width: 319px) {
}
/* ### Responsive Min_320px Max_479px ### */
@media only screen and (min-width: 320px) and (max-width: 479px) {
}
/* ### Responsive Min_480px Max_767px ### */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}
/* ### Responsive Min_768px Max_959px ### */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
/* ### Responsive Min_960px Max_1023px ### */
@media only screen and (min-width: 960px) and (max-width: 1023px) {
}
/* ### Responsive Min_1024px Max_1279px ### */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
}
/* ### Responsive Min_1280px ### */
@media only screen and (min-width: 1280px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment