Container queries land in stable browsers

This Valentine's day, we're celebrating size container queries and container query units landing in all stable browsers.

Container query love is in the air! This Valentine’s day, size container queries and container query units are stable in all modern browsers.

Browser Support

  • 105
  • 105
  • 110
  • 16

Source

With container queries you can query the styling information of a parent element, such as its inline-size. With media queries, you could query the size of the viewport, container queries enable components that can change based on where they are in the UI.

Media queries vs container queries.

Container queries are especially handy for responsive design and reusable components. For example, enabling a card component that can lay out in one way when placed in a sidebar, and in a different configuration within a product grid.

Using container queries

To use container queries, first set containment on a parent element. Do this by setting a container-type on the parent container, or use the container shorthand to give it both a type and name simultaneously:

.card-container {
  container: card / inline-size;
}

Setting the container-type to inline-size queries the inline-direction size of the parent. In latin languages like English, this would be the width of the card, as the text flows inline from left to right.

Now, you can use that container to apply styles to any of its children using @container:

.card-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@container (max-width: 400px) {
 .card-child {
  grid-template-columns: 1fr;
 }
}

Additionally, you can use container query length unit values in the same way that you would viewport-based unit values. The difference being that the container units correspond to the container rather than the viewport. The following example demonstrates responsive typography using container query units and the clamp() function to give a minimum and maximum size value:

.card-child h2 {
  font-size: clamp(2rem, 15cqi, 4rem);
}

The 15cqi above refers to 15% of the container’s inline size. The clamp() function gives this a minimum value of 2rem, and a maximum of 4rem. In the meantime, if 15cqi is between these values, the text will shrink and grow correspondingly.

A container query Valentine

To celebrate the container query love this holiday, we’ve made a Valentine for you all to enjoy, regardless of what (latest version) stable browser you’re viewing this in!

Part of the Newly interoperable series