Say Hello to CSS Container Queries

Container queries are finally here! Now available behind a flag in the latest version of Chrome Canary, you can go ahead and experiment to your heart’s content. Oh, and if you’re not familiar with container queries then check out …


The post Say Hello to CSS Container Queries appeared first on CSS-Tricks.

You can support CSS-Tricks by being an MVP Supporter.


This content originally appeared on CSS-Tricks and was authored by Robin Rendle

Container queries are finally here! Now available behind a flag in the latest version of Chrome Canary, you can go ahead and experiment to your heart’s content. Oh, and if you’re not familiar with container queries then check out this post by Ethan Marcotte about why they’re so dang important.

Ahmad Shadeed described his excitement and showcased a ton of great use cases for problems that container queries solves:

I haven’t been more excited for a CSS feature like I’m now in the past six years I spent as a front-end developer. The prototype of container queries is now available behind a flag in Chrome Canary. Thanks to efforts from smart people like Miriam Suzanne and other folks.

I remember seeing a lot of jokes about the support for CSS container queries, but they are finally there.

Once you’ve activated the feature in chrome://flags you can then begin to write code like this:

.parent {
  contain: layout inline-size;
}

@container (min-width: 400px) {
  .child {
    display: flex;
    flex-wrap: wrap;
  }
}

First off, you need to tell the parent component that a child needs to change size (that’s the contain: layout inline-size part). Next, you can use a new kind of query called @container which will detect when the parent of an element changes width.

Andy Bell also made a bunch of great examples when he argued that we often need elements to change based on the size of the parent element more so than the width of the browser window, especially when it comes to typography:

Most importantly with container queries, we can set typography contextually! This for me is the most needed feature in design system implementations and why I constantly wish we had container queries. We can respond with media queries and set font sizes etc that way, but when you have no idea where an element will end up, this isn’t an ideal approach. Now we have container queries, we can make type adjustments that actually make sense a lot easier than before.

This post reminds me that Miriam Suzanne made an excellent proposal where you can read more about how container queries were designed and all the various snaffus and problems that came up along the way. It’s so neat to see a document like this that shows CSS being improved in public.

Personally, I believe this is the biggest improvement to CSS since Grid. It opens up all sorts of elegant solutions to problems we work around on a daily basis. I hit a snag just the other day when I wanted to set the type of an element in a sidebar depending on the width of the element wrapping it. And gah — it just wasn’t possible without introducing a bunch of weird hacks!

Container queries aren’t just some far-flung pipe dream now. They’re here to stay.

Direct Link to ArticlePermalink


The post Say Hello to CSS Container Queries appeared first on CSS-Tricks.

You can support CSS-Tricks by being an MVP Supporter.


This content originally appeared on CSS-Tricks and was authored by Robin Rendle


Print Share Comment Cite Upload Translate Updates
APA

Robin Rendle | Sciencx (2021-04-20T14:21:44+00:00) Say Hello to CSS Container Queries. Retrieved from https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/

MLA
" » Say Hello to CSS Container Queries." Robin Rendle | Sciencx - Tuesday April 20, 2021, https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/
HARVARD
Robin Rendle | Sciencx Tuesday April 20, 2021 » Say Hello to CSS Container Queries., viewed ,<https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/>
VANCOUVER
Robin Rendle | Sciencx - » Say Hello to CSS Container Queries. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/
CHICAGO
" » Say Hello to CSS Container Queries." Robin Rendle | Sciencx - Accessed . https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/
IEEE
" » Say Hello to CSS Container Queries." Robin Rendle | Sciencx [Online]. Available: https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/. [Accessed: ]
rf:citation
» Say Hello to CSS Container Queries | Robin Rendle | Sciencx | https://www.scien.cx/2021/04/20/say-hello-to-css-container-queries-3/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.