Created
July 17, 2015 23:15
-
-
Save AllThingsSmitty/9b3b5a1baf077ffa8625 to your computer and use it in GitHub Desktop.
How our main CSS file might end up looking with HTTP/2
This file contains hidden or 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
@import "core.css"; | |
@import "theme.css"; | |
@import "user-theme.css"; | |
@import "small-breakpoint.css" (max-width: 40em); | |
@import "landscape.css" screen and (orientation: landscape); | |
@import "print.css" print; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@import
supports media queries but browsers that support HTTP/2 are still loading all stylesheets whether or not the media query calls for it.