Day 80: container style queries

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
Container style queries allow querying the computed values of a query container.No browser supports it yet, but we should be able to do something like this: .card { aspect-ratio: 1 / 1; } .card--wide { aspect-ratio: 16 / 9 } @container style(aspect-ratio: 16 / 9) { img { object-fit: cover; } } We can check whether a container has a...