Skip to content

Instantly share code, notes, and snippets.

@extrimua
Forked from thegreatyamori/link.md
Created September 17, 2021 08:42
Show Gist options
  • Save extrimua/ceb05e951c4607cc0473a13a21d9f705 to your computer and use it in GitHub Desktop.
Save extrimua/ceb05e951c4607cc0473a13a21d9f705 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