Created
July 11, 2014 13:31
-
-
Save rotten77/c96e3ad2578584c75d50 to your computer and use it in GitHub Desktop.
Bootstrap 3 - Media queries breakpoints
This file contains 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
/* Extra small devices (no-need) */ | |
@media (max-width: 767px) { | |
} | |
/* Small devices (tablets, 768px and up) */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
/* Medium devices (desktops, 992px and up) */ | |
@media (min-width: 992px) and (max-width: 1199px) { | |
} | |
/* Large devices (large desktops, 1200px and up) */ | |
@media (min-width: 1200px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment