Last active
March 4, 2016 10:29
-
-
Save ShaklinSyed/fa3477983dedaf1883ca to your computer and use it in GitHub Desktop.
Quick ref for media queries bootstrap
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
@media (max-width: 767px) { | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
} | |
@media (min-width: 1200px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment