Skip to content

Instantly share code, notes, and snippets.

@jashimcse
Last active August 1, 2018 06:18
Show Gist options
  • Save jashimcse/6e6a2e8d5d628eedd6a049d175146051 to your computer and use it in GitHub Desktop.
Save jashimcse/6e6a2e8d5d628eedd6a049d175146051 to your computer and use it in GitHub Desktop.
Media Query(Bootstrap)
/* 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) {
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
}
/* small mobile :320px. */
@media (max-width: 767px) {
.container {width:300px}
}
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
}
/* 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