-
-
Save qzm/30e1b87ad549263f83f229aa93724e4c to your computer and use it in GitHub Desktop.
Bootstrap3 Media Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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