Skip to content

Instantly share code, notes, and snippets.

@Rupashdas
Last active June 9, 2023 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rupashdas/7991c1a8defb97465fbca5a9c18060e4 to your computer and use it in GitHub Desktop.
Save Rupashdas/7991c1a8defb97465fbca5a9c18060e4 to your computer and use it in GitHub Desktop.
/* Medium Layout: 992 to 1200px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}
/* Tablet Layout: 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/* Tablet & Mobile Layout: 991px */
@media only screen and (max-width: 991px) {
}
/* Wide Mobile Layout: 767px */
@media only screen and (max-width: 767px) {
}
/* Wide Mobile Layout: 480px. */
@media only screen and (max-width: 480px) {
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 320px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment