Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created November 14, 2020 11:20
Show Gist options
  • Save ozcanzaferayan/f7f30656c6ace15802fab1fb5df9b9a4 to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/f7f30656c6ace15802fab1fb5df9b9a4 to your computer and use it in GitHub Desktop.
Media queries for laptop tablet and mobile
@media screen and (max-width: 1024px) {
/* Laptop (1024px) */
}
@media screen and (max-width: 768px) {
/* Tablet (768px) */
}
@media screen and (max-width: 320px) {
/* Phone (Small) */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment