Skip to content

Instantly share code, notes, and snippets.

@joe-oli
Created November 17, 2019 21:25
Show Gist options
  • Save joe-oli/ea31f207ccd3cb31c25804e13203d357 to your computer and use it in GitHub Desktop.
Save joe-oli/ea31f207ccd3cb31c25804e13203d357 to your computer and use it in GitHub Desktop.
bootstrap media queries.
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