Created
November 17, 2019 21:25
-
-
Save joe-oli/ea31f207ccd3cb31c25804e13203d357 to your computer and use it in GitHub Desktop.
bootstrap media queries.
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
On the Bootstrap 3 media queries documentation it says: | |
We use the following media queries in our Less files to create the key breakpoints in our grid system. | |
Extra small devices (phones, less than 768px): No media query since this is the default in Bootstrap | |
Small devices (tablets, 768px and up): @media (min-width: @screen-sm-min) { ... } | |
Medium devices (desktops, 992px and up): @media (min-width: @screen-md-min) { ... } | |
Large devices (large desktops, 1200px and up): @media (min-width: @screen-lg-min) { ... } | |
https://stackoverflow.com/questions/19592968/bootstrap-3-breakpoints-and-media-queries |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment