Forked from landru247/BootStrap(3): CSS - Media queries break points
Created
July 4, 2017 13:42
-
-
Save dancr13/e9678a9b21f0976588df79e10031d334 to your computer and use it in GitHub Desktop.
BootStrap(3): CSS - Media queries break points
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
| /* Small devices (tablets, 768px and up) */ | |
| @media (min-width: 768px) { | |
| } | |
| /* Medium devices (desktops, 992px and up) */ | |
| @media (min-width: 992px) { | |
| } | |
| /* Large devices (large desktops, 1200px and up) */ | |
| @media (min-width: 1200) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment