Skip to content

Instantly share code, notes, and snippets.

@Golly
Created February 7, 2013 08:24
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 Golly/4729464 to your computer and use it in GitHub Desktop.
Save Golly/4729464 to your computer and use it in GitHub Desktop.
CSS: Mobile first breakpoints
/*-- screen resolutions --*/
@media only screen and (min-width: 768px) { /*--From Tablet--*/
}
@media only screen and (min-width: 960px) { /*--From Desktop--*/
}
@media only screen and (min-width: 1200px) { /*--From wide screen--*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment