This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Andrew Hudson
andrewhudson.dev
did:plc:v2g2eg4yqzdvaszx573z6hwi
Curious as to the benefits of this versus @container style() queries. e.g.
@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) {
...
}
2025-12-09T14:20:44.932Z