Last active
April 18, 2022 15:51
-
-
Save audetcameron/2268c55c85632e408d50420706d98765 to your computer and use it in GitHub Desktop.
Webflow Default CSS Media Queries for custom css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Default webflow media queries | |
Desktop (base): styles apply to all devices unless overridden at other device breakpoints | |
https://university.webflow.com/lesson/intro-to-breakpoints | |
*/ | |
/*styles applied to screens 1280px wide and above*/ | |
@media (min-width: 1280px) { ... } | |
/*styles applied to screens 1440px wide and above*/ | |
@media (min-width: 1440px) { ... } | |
/*styles applied to screens 1920px wide and above*/ | |
@media (min-width: 1920px) { ... } | |
/*Tablet: styles applied to screens 991px wide and below*/ | |
@media (max-width: 991px) { ... } | |
/*Mobile landscape: styles applied to screens 767px wide and below*/ | |
@media (max-width: 767px) { ... } | |
/*Mobile portrait: styles applied to screens 991px wide and below*/ | |
@media (max-width: 478px) { ... } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment