Skip to content

Instantly share code, notes, and snippets.

@milon
Created November 19, 2014 06:52
Show Gist options
  • Save milon/df3be053ba98ded4d9da to your computer and use it in GitHub Desktop.
Save milon/df3be053ba98ded4d9da to your computer and use it in GitHub Desktop.
Bootstrap media query for responsive design
/**
* Bootstrap CSS
* CSS3 Media query for responsive design
*/
/* large grid only */
@media (min-width: 1200px) {
}
/* medium grid only */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* small grid only */
@media (min-width: 768px) and (max-width: 992px) {
}
/* extra small grid only */
@media (max-width: 768px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment