Skip to content

Instantly share code, notes, and snippets.

@chanified
Last active August 29, 2015 14:09
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 chanified/b7b3c6e0369f4be65cb3 to your computer and use it in GitHub Desktop.
Save chanified/b7b3c6e0369f4be65cb3 to your computer and use it in GitHub Desktop.
Twitter Bootstrap 3.2 - CSS Media Queries
/* Extra Small Devices, .visible-xs-* */
@media (max-width: 767px) {}
/* Small Devices, .visible-sm-* */
@media (min-width: 768px) and (max-width: 991px) {}
/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {}
/* Large Devices, .visible-lg-* */
@media (min-width: 1200px) {}
/* Min Widths*/
/* Extra Small Devices + */
@media (min-width: 767px) {}
/* Small Devices + */
@media (min-width: 991px) {}
/* Medium Devices + */
@media (min-width: 1199px) {}
/* Large Devices + */
@media (min-width: 1200px) {}
/* Max Widths*/
/* Extra Small Devices */
@media (max-width: 767px) {}
/* Small Devices */
@media (max-width: 991px) {}
/* Medium Devices */
@media (max-width: 1199px) {}
/* Large Devices */
@media (min-width: 1200px) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment