Skip to content

Instantly share code, notes, and snippets.

@askehansen
Created December 19, 2013 09:34
Show Gist options
  • Save askehansen/8036717 to your computer and use it in GitHub Desktop.
Save askehansen/8036717 to your computer and use it in GitHub Desktop.
Responsive breakpoints
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px)
{
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px)
{
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment