Skip to content

Instantly share code, notes, and snippets.

@skdblog1999
Created October 10, 2019 07:55
Show Gist options
  • Select an option

  • Save skdblog1999/fb1f8d543bc40913b9af0311918f6cf1 to your computer and use it in GitHub Desktop.

Select an option

Save skdblog1999/fb1f8d543bc40913b9af0311918f6cf1 to your computer and use it in GitHub Desktop.
Bootstrap Css Media Queries
/* xLarge Devices col-xl */
@media (min-width: 1200px) {
}
/* Large Devices col-lg */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* Medium Devices col-md */
@media (min-width: 768px) and (max-width: 992px) {
}
/* Small Devices col-sm */
@media (min-width: 576px) and (max-width: 768px) {
}
/* Extra Small Devices col */
@media (max-width: 576px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment