Skip to content

Instantly share code, notes, and snippets.

@ATYB4
Last active December 16, 2021 13:14
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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