Skip to content

Instantly share code, notes, and snippets.

@qzm
Forked from redfrost/Media Query
Last active December 28, 2016 04:04
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 qzm/30e1b87ad549263f83f229aa93724e4c to your computer and use it in GitHub Desktop.
Save qzm/30e1b87ad549263f83f229aa93724e4c to your computer and use it in GitHub Desktop.
Bootstrap3 Media Query
/* Desktop */
@media (min-width: 1601px) { }
/* Laptop */
@media (min-width: 1200px) { }
/* Tablet Horizontal */
@media (min-width: 992px) and (max-width: 1199px) { }
/* Tablet Vertical */
@media (min-width: 768px) and (max-width: 991px) { }
/* Tablet mini */
@media (max-width: 767px) { }
/* iPhone 6+ horizontal */
@media (max-width: 736px) { }
/* iPhone 6 horizontal */
@media (max-width: 667px) { }
/* iPhone 5 horizontal */
@media (max-width: 568px) { }
/* Mobile horizontal */
@media (max-width: 480px) { }
/* Mobile vertical */
@media (max-width: 320px) { }
/* Print */
@media print { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment