Skip to content

Instantly share code, notes, and snippets.

@Faolain
Forked from abidsikder/media_queries.css
Created July 13, 2021 22:27
Show Gist options
  • Save Faolain/ac47c98b9e11f072d92be249c0cb7877 to your computer and use it in GitHub Desktop.
Save Faolain/ac47c98b9e11f072d92be249c0cb7877 to your computer and use it in GitHub Desktop.
@media only screen and (max-width: 413px) {
}
@media only screen and (min-width: 414px) and (max-width: 767px) {
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
}
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
}
@media only screen and (min-width: 1920px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment