Skip to content

Instantly share code, notes, and snippets.

@hail2u
Created May 31, 2017 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hail2u/9e91d1ea6cc4f58e7e6f22881e5b4005 to your computer and use it in GitHub Desktop.
Save hail2u/9e91d1ea6cc4f58e7e6f22881e5b4005 to your computer and use it in GitHub Desktop.
nested conditional rules
@supports (display: flex) {
.foo {
display: flex;
}
@media (min-width: 320px) {
@supports (text-decoration-style: wavy) {
.bar {
text-decoration-style: wavy;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment