Day 85: typed custom properties in container style queries

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
Registering typed custom properties can be useful in container style queries.The following container style query matches because the computed value of both --bg and --color is “red”. html { --color: red; } .card { --bg: red; } /* Condition is true, styles applied */ @container style(--bg: var(--keyword)) { h1 { border: 10px dotted...