This feature is well established and works across many devices and browser versions. It’s been available across browsers since February 2023.
The container-name CSS property specifies a list of query container names used by the @container at-rule in a container query. A container query will apply styles to elements based on the size or scroll-state of the nearest ancestor with a containment context. When a containment context is given a name, it can be specifically targeted using the @container at-rule instead of the nearest ancestor with containment.
Note: When using the container-type and container-name properties, the style and layout values of the contain property are automatically applied.
container-name: none; /* A single name */ container-name: my-layout; /* Multiple names */ container-name: my-page-layout my-component-library; /* Global Values */ container-name: inherit; container-name: initial; container-name: revert; container-name: revert-layer; container-name: unset;
noneDefault value. The query container has no name.
<custom-ident>A case-sensitive string that is used to identify the container. The following conditions apply:
or, and, not, or default.--container-name) is permitted.| Initial value | none |
|---|---|
| Applies to | all elements |
| Inherited | no |
| Computed value |
none or an ordered list of identifiers |
| Animation type | Not animatable |
container-name =
none |
<custom-ident>+
Given the following HTML example which is a card component with a title and some text:
<div class="card">
<div class="post-meta">
<h2>Card title</h2>
<p>My post details.</p>
</div>
<div class="post-excerpt">
<p>
A preview of my <a href="https://example.com">blog post</a> about cats.
</p>
</div>
</div>
To create a containment context, add the container-type property to an element in CSS. The following example creates two containment contexts, one for the card meta information and one for the post excerpt:
Note: A shorthand syntax for these declarations are described in the container page.
.post-meta {
container-type: inline-size;
}
.post-excerpt {
container-type: inline-size;
container-name: excerpt;
}
Writing a container query via the @container at-rule will apply styles to the elements of the container when the query evaluates to true. The following example has two container queries, one that will apply only to the contents of the .post-excerpt element and one that will apply to both the .post-meta and .post-excerpt contents:
@container excerpt (width >= 400px) {
p {
visibility: hidden;
}
}
@container (width >= 400px) {
p {
font-size: 2rem;
}
}
For more information on writing container queries, see the CSS Container Queries page.
You can also provide multiple names to a container context separated by a space:
.post-meta {
container-type: inline-size;
container-name: meta card;
}
This will allow you to target the container using either name in the @container at-rule. This is useful if you want to target the same container with multiple container queries where either condition could be true:
@container meta (width <= 500px) {
p {
visibility: hidden;
}
}
@container card (width <= 200px) {
h2 {
font-size: 1.5em;
}
}
| Specification |
|---|
| CSS Conditional Rules Module Level 5> # container-name> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
container-name |
105 | 105 | 110 | 91 | 16 | 105 | 110 | 72 | 16 | 20.0 | 105 | 16 |
none |
105 | 105 | 110 | 91 | 16 | 105 | 110 | 72 | 16 | 20.0 | 105 | 16 |
@container at-rulecontainer shorthand propertycontainer-type propertycontent-visibility property
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/container-name