Skip to content

Instantly share code, notes, and snippets.

@Uvacoder
Created December 16, 2021 13:14
Show Gist options
  • Select an option

  • Save Uvacoder/5a2bde375210606b5cfb9408d65ee642 to your computer and use it in GitHub Desktop.

Select an option

Save Uvacoder/5a2bde375210606b5cfb9408d65ee642 to your computer and use it in GitHub Desktop.
CSS screen media queries
@media (min-width: 640px) {
/* mobile (sm) */
}
@media (min-width: 768px) {
/* tablet (md) */
}
@media (min-width: 1024px) {
/* laptop (lg) */
}
@media (min-width: 1280px) {
/* desktop (xl) */
}
@media (min-width: 1536px) {
/* large desktop (2xl) */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment