Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active May 26, 2025 14:31
Show Gist options
  • Save Kcko/9dcf6c0576a7992a623c8034a7bef096 to your computer and use it in GitHub Desktop.
Save Kcko/9dcf6c0576a7992a623c8034a7bef096 to your computer and use it in GitHub Desktop.
/*
https://css-tricks.com/the-css-custom-property-toggle-trick/
*/
html {
--mq-sm: initial;
}
@media (max-width: 600px) {
html {
--mq-sm: ;
}
}
.card {
--bg1: var(--mq-sm) green; /* first can be invalid ;) */
--bg2: red;
background: var(--bg1, var(--bg2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment