Skip to content

Instantly share code, notes, and snippets.

@thegreatyamori
Created March 18, 2021 09:18
Show Gist options
  • Save thegreatyamori/a44f2b5abee9e5ee5d2c487698253af1 to your computer and use it in GitHub Desktop.
Save thegreatyamori/a44f2b5abee9e5ee5d2c487698253af1 to your computer and use it in GitHub Desktop.
Media Queries 2021
/* Extra arge devices (extra large desktops, 1201px and up) */
@media (min-width: 1201px) {
}
/* Medium devices (tablets, 481px and up) */
@media (min-width: 481px) {
}
/* Medium devices (small screens, laptops, 769px and up) */
@media (min-width: 769px) {
}
/* Large devices (large desktops, 1025px and up) */
@media (min-width: 1025px) {
}
/* Extra arge devices (extra large desktops, 1201px and up) */
@media (min-width: 1201px) {
}
/* Small devices (landscape phones, less than 480px) */
@media (max-width: 480px) {
}
/* Medium devices (tablets, less than 768px) */
@media (max-width: 768px) {
}
/* Medium devices (small screens, laptops, less than 1024px) */
@media (max-width: 1024px) {
}
/* Large devices (desktops, large screens, less than 1200px) */
@media (max-width: 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment