Skip to content

Instantly share code, notes, and snippets.

@masumskaib396
Created May 18, 2018 18:19
Show Gist options
  • Save masumskaib396/d4609eb7cc75f7db5439ec6649fcf96d to your computer and use it in GitHub Desktop.
Save masumskaib396/d4609eb7cc75f7db5439ec6649fcf96d to your computer and use it in GitHub Desktop.
/* XL Device :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
}
/* LG Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Extra small Device. */
@media (max-width: 767px) {
}
/* SM Small Device :550px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment