Day 69: width in container queries

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
In a media query, it’s obvious what width means. It always refers to the width of the viewport. With size container queries it’s not that obvious./* Kicks in when the viewport has a minimum width of 500px */ @media (min-width: 500px) { body { background-color: hotpink; } } width in a size container query queries the width of the...