Mountain lover. Cyclist. Runner. Hiker.
andrewhudson.dev
@custom-media --feature-flag-custom-media true;
@media (--feature-flag-custom-media) {
...
}
versus
:root {
--feature-flag-style-query: true;
}
@container style(--feature-flag-style-query: true) {
...
}
@custom-media --feature-flag-custom-media true;
@media (--feature-flag-custom-media) {
...
}
versus
:root {
--feature-flag-style-query: true;
}
@container style(--feature-flag-style-query: true) {
...
}
Thanks!
Thanks!