Skip to content

Instantly share code, notes, and snippets.

@mihir1337
Forked from mdsalim/Responsive Query
Created May 20, 2018 15:53
Show Gist options
  • Select an option

  • Save mihir1337/5fb5c7d274003a51f93e5dcc9e2d92d6 to your computer and use it in GitHub Desktop.

Select an option

Save mihir1337/5fb5c7d274003a51f93e5dcc9e2d92d6 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