1. Introduction
Efficiently rendering a website relies on the User Agent being able to detect what parts of the page are being displayed, which parts might affect the currently-displayed section, and what can be ignored.
There are various heuristics that can be used to guess when a given sub-tree is independent of the rest of the page in some manner, but they’re fragile, so innocuous changes to a page may inadvertently make it flunk the heuristics and fall into a slow mode. There are also many things that would be good to isolate which are difficult or impossible to detect in a heuristic manner.
To alleviate these problems and allow strong, predictable isolation of a subtree from the rest of the page, this specification defines a contain property.
2. Strong Containment: the contain property
Name: | contain |
---|---|
Value: | none | strict | content | [ size || layout || style || paint ] |
Initial: | none |
Applies to: | See below |
Inherited: | no |
Percentages: | n/a |
Computed value: | specified keyword(s) |
Canonical order: | per grammar |
Animation type: | not animatable |
- contain-animation-001.html (live test) (source)
- inheritance.html (live test) (source)
- contain-computed.html (live test) (source)
- contain-invalid.html (live test) (source)
- contain-valid.html (live test) (source)
- contain-layout-size-003.html (live test) (source)
- contain-paint-size-001.html (live test) (source)
- contain-paint-size-002.html (live test) (source)
- contain-paint-size-003.html (live test) (source)
- contain-chrome-crash-001.html (live test) (source)
User Agents are expected to support this property on all media, including non-visual ones.
The contain property allows an author to indicate that an element and its contents are, as much as possible, independent of the rest of the document tree. This allows user agents to utilize much stronger optimizations when rendering a page using contain properly, and allows authors to be confident that their page won’t accidentally fall into a slow code path due to an innocuous change.
- none
- This value indicates that the property has no effect. The element renders as normal, with no containment effects applied.
- strict
- This value turns on all forms of containment except style containment for the element. In other words, it behaves the same as contain: size layout paint;.
- content
-
This value turns on all forms of containment except size containment and style containment for the element.
In other words, it behaves the same as contain: layout paint;.
- contain-content-001.html (live test) (source)
- contain-content-002.html (live test) (source)
- contain-content-003.html (live test) (source)
- contain-content-004.html (live test) (source)
- contain-content-011.html (live test) (source)
Note: contain: content is reasonably "safe" to apply widely; its effects are fairly minor in practice, and most content won’t run afoul of its restrictions. However, because it doesn’t apply size containment, the element can still respond to the size of its contents, which can cause layout-invalidation to percolate further up the tree than desired. Use contain: strict or contain: strict style when possible, to gain as much containment as you can.
- size
-
The value turns on size containment for the element.
This ensures that the containing box can be laid out
without needing to examine its descendants.
- contain-size-001.html (live test) (source)
- contain-size-002.html (live test) (source)
- contain-size-003.html (live test) (source)
- contain-size-004.html (live test) (source)
- contain-size-005.html (live test) (source)
- contain-size-006.html (live test) (source)
- contain-size-007.html (live test) (source)
- contain-size-008.html (live test) (source)
- contain-size-009.html (live test) (source)
- contain-size-010.html (live test) (source)
- contain-size-011.html (live test) (source)
- contain-size-012.html (live test) (source)
- contain-size-012b.html (live test) (source)
- contain-size-013.html (live test) (source)
- contain-size-021.html (live test) (source)
- contain-size-023.html (live test) (source)
- contain-size-025.html (live test) (source)
- contain-size-027.html (live test) (source)
- contain-size-041.html (live test) (source)
- contain-size-042.html (live test) (source)
- contain-size-051.html (live test) (source)
- contain-size-052.html (live test) (source)
- contain-size-056.html (live test) (source)
- contain-size-061.html (live test) (source)
- contain-size-062.html (live test) (source)
- contain-size-baseline-001.html (live test) (source)
- contain-size-borders.html (live test) (source)
- contain-size-breaks-001.html (live test) (source)
- contain-size-button-001.html (live test) (source)
- contain-size-fieldset-001.html (live test) (source)
- contain-size-fieldset-002.html (live test) (source)
- contain-size-flexbox-001.html (live test) (source)
- contain-size-flexbox-002.html (live test) (source)
- contain-size-grid-001.html (live test) (source)
- contain-size-grid-002.html (live test) (source)
- contain-size-monolithic-001.html (live test) (source)
- contain-size-multicol-001.html (live test) (source)
- contain-size-multicol-as-flex-item.html (live test) (source)
- contain-size-replaced-001.html (live test) (source)
- contain-size-replaced-002.html (live test) (source)
- contain-size-replaced-003a.html (live test) (source)
- contain-size-replaced-003b.html (live test) (source)
- contain-size-replaced-003c.html (live test) (source)
- contain-size-replaced-004.html (live test) (source)
- contain-size-replaced-005.html (live test) (source)
- contain-size-replaced-006.html (live test) (source)
- contain-size-select-001.html (live test) (source)
- contain-size-select-002.html (live test) (source)
- contain-size-scrollbars-001.html (live test) (source)
- contain-size-scrollbars-002.html (live test) (source)
- contain-size-scrollbars-003.html (live test) (source)
- contain-layout-size-003.html (live test) (source)
- contain-paint-size-001.html (live test) (source)
- contain-paint-size-002.html (live test) (source)
- contain-paint-size-003.html (live test) (source)
- layout
-
This value turns on layout containment for the element.
This ensures that the containing box is totally opaque for layout purposes;
nothing outside can affect its internal layout,
and vice versa.
- contain-layout-001.html (live test) (source)
- contain-layout-002.html (live test) (source)
- contain-layout-003.html (live test) (source)
- contain-layout-004.html (live test) (source)
- contain-layout-005.html (live test) (source)
- contain-layout-006.html (live test) (source)
- contain-layout-007.html (live test) (source)
- contain-layout-009.html (live test) (source)
- contain-layout-010.html (live test) (source)
- contain-layout-011.html (live test) (source)
- contain-layout-012.html (live test) (source)
- contain-layout-013.html (live test) (source)
- contain-layout-014.html (live test) (source)
- contain-layout-016.html (live test) (source)
- contain-layout-017.html (live test) (source)
- contain-layout-018.html (live test) (source)
- contain-layout-baseline-001.html (live test) (source)
- contain-layout-baseline-002.html (live test) (source)
- contain-layout-baseline-003.html (live test) (source)
- contain-layout-baseline-004.html (live test) (source)
- contain-layout-baseline-005.html (live test) (source)
- contain-layout-breaks-001.html (live test) (source)
- contain-layout-breaks-002.html (live test) (source)
- contain-layout-button-001.html (live test) (source)
- contain-layout-cell-001.html (live test) (source)
- contain-layout-cell-002.html (live test) (source)
- contain-layout-flexbox-001.html (live test) (source)
- contain-layout-grid-001.html (live test) (source)
- contain-layout-ifc-022.html (live test) (source)
- contain-layout-independent-formatting-context-001.html (live test) (source)
- contain-layout-independent-formatting-context-002.html (live test) (source)
- contain-layout-independent-formatting-context-003.html (live test) (source)
- contain-layout-ink-overflow-013.html (live test) (source)
- contain-layout-ink-overflow-014.html (live test) (source)
- contain-layout-ink-overflow-015.html (live test) (source)
- contain-layout-ink-overflow-016.html (live test) (source)
- contain-layout-ink-overflow-017.html (live test) (source)
- contain-layout-ink-overflow-018.html (live test) (source)
- contain-layout-ink-overflow-019.html (live test) (source)
- contain-layout-ink-overflow-020.html (live test) (source)
- contain-layout-size-003.html (live test) (source)
- contain-subgrid-001.html (live test) (source)
- style
-
This value turns on style containment for the element.
This ensures that,
for properties which can have effects on more than just an element and its descendants,
those effects don’t escape the element.
- contain-style-baseline-001.html (live test) (source)
- contain-style-breaks-001.html (live test) (source)
- contain-style-breaks-002.html (live test) (source)
- contain-style-breaks-003.html (live test) (source)
- contain-style-breaks-004.html (live test) (source)
- contain-style-breaks-005.html (live test) (source)
- contain-style-counters-001.html (live test) (source)
- contain-style-counters-002.html (live test) (source)
- contain-style-counters-003.html (live test) (source)
- contain-style-counters-004.html (live test) (source)
- counter-scoping-001.html (live test) (source)
- counter-scoping-002.html (live test) (source)
- counter-scoping-003.html (live test) (source)
- quote-scoping-001.html (live test) (source)
- quote-scoping-002.html (live test) (source)
- quote-scoping-003.html (live test) (source)
- quote-scoping-004.html (live test) (source)
Note: This value is at-risk.
- paint
-
This value turns on paint containment for the element.
This ensures that the descendants of the containing box don’t display outside its bounds,
so if an element is off-screen or otherwise not visible,
its descendants are also guaranteed to be not visible.
- contain-paint-001.html (live test) (source)
- contain-paint-002.html (live test) (source)
- contain-paint-004.html (live test) (source)
- contain-paint-005.html (live test) (source)
- contain-paint-006.html (live test) (source)
- contain-paint-007.html (live test) (source)
- contain-paint-008.html (live test) (source)
- contain-paint-009.html (live test) (source)
- contain-paint-010.html (live test) (source)
- contain-paint-011.html (live test) (source)
- contain-paint-012.html (live test) (source)
- contain-paint-014.html (live test) (source)
- contain-paint-015.html (live test) (source)
- contain-paint-016.html (live test) (source)
- contain-paint-017.html (live test) (source)
- contain-paint-018.html (live test) (source)
- contain-paint-019.html (live test) (source)
- contain-paint-020.html (live test) (source)
- contain-paint-021.html (live test) (source)
- contain-paint-022.html (live test) (source)
- contain-paint-023.html (live test) (source)
- contain-paint-024.html (live test) (source)
- contain-paint-025.html (live test) (source)
- contain-paint-047.html (live test) (source)
- contain-paint-048.html (live test) (source)
- contain-paint-baseline-001.html (live test) (source)
- contain-paint-cell-001.html (live test) (source)
- contain-paint-cell-002.html (live test) (source)
- contain-paint-clip-011.html (live test) (source)
- contain-paint-clip-012.html (live test) (source)
- contain-paint-clip-013.html (live test) (source)
- contain-paint-clip-014.html (live test) (source)
- contain-paint-clip-015.html (live test) (source)
- contain-paint-clip-016.html (live test) (source)
- contain-paint-clip-017.html (live test) (source)
- contain-paint-clip-018.html (live test) (source)
- contain-paint-clip-019.html (live test) (source)
- contain-paint-ifc-011.html (live test) (source)
- contain-paint-independent-formatting-context-001.html (live test) (source)
- contain-paint-independent-formatting-context-002.html (live test) (source)
- contain-paint-independent-formatting-context-003.html (live test) (source)
- contain-paint-size-001.html (live test) (source)
- contain-paint-size-002.html (live test) (source)
- contain-paint-size-003.html (live test) (source)
- contain-paint-table-001.html (live test) (source)
- contain-paint-table-002.html (live test) (source)
- contain-subgrid-001.html (live test) (source)
This property generally applies to all elements (including CSS Pseudo-Elements 4 §4.1 Generated Content Pseudo-elements: ::before and ::after),
although some types of containment have no effect on some elements,
as detailed in § 3 Types of Containment.
In addition, in the case of [SVG2],
the contain property only applies to svg
elements that have an associated CSS layout box.
For example, assume a micropost social network had markup something like this:
< body >
< aside > ...</ aside >
< section >
< h2 > Messages</ h2 >
< article >
Lol, check out this dog: images.example.com/jsK3jkl
</ article >
< article >
I had a ham sandwich today. #goodtimes
</ article >
< article >
I have political opinions that you need to hear!
</ article >
…
</ section >
</ body >
There are probably a lot of messages displayed on the site, but each is independent and won’t affect anything else on the site. As such, each can be marked with contain: content to communicate this to the user agent, so it can optimize the page and skip a lot of computation for messages that are off-screen. If the size of each message is known ahead of time, contain: strict can be applied to communicate further restrictions.
3. Types of Containment
There are several varieties of containment that an element can be subject to, restricting the effects that its descendants can have on the rest of the page in various ways. Containment enables much more powerful optimizations by user agents, and helps authors compose their page out of functional units, as it limits how widely a given change can affect a document.
Specification authors introducing new properties or mechanisms need to consider whether and how the various types of containment affect what they are introducing, and include in their specification any effect not described here.
3.1. Size Containment
If the element does not generate a principal box (as is the case with display: contents or display: none), or its inner display type is table, or its principal box is an internal table box, or an internal ruby box, or a non-atomic inline-level box, size containment has no effect. Otherwise, giving an element size containment makes its principal box a containing box for size containment and has the following effects:
- contain-size-001.html (live test) (source)
- contain-size-002.html (live test) (source)
- contain-size-003.html (live test) (source)
- contain-size-004.html (live test) (source)
- contain-size-005.html (live test) (source)
- contain-size-006.html (live test) (source)
- contain-size-007.html (live test) (source)
- contain-size-008.html (live test) (source)
- contain-size-009.html (live test) (source)
- contain-size-010.html (live test) (source)
- contain-size-012.html (live test) (source)
- contain-size-012b.html (live test) (source)
- contain-size-051.html (live test) (source)
- contain-size-052.html (live test) (source)
Note: Internal table boxes, which do not include table captions, are excluded, because the table layout algorithm does not allow boxes to become smaller than their inflow content. Sizing a table cell as if it was empty and then layout out its content inside without changing the size is effectively an undefined operation. Manually setting the width or height properties to 0 cannot make it smaller than its content. This concern does not apply to table captions, which are perfectly capable of having a fixed size that is independent of their content.
-
When calculating the size of the containing box, it must be treated as having no contents.
- contain-size-021.html (live test) (source)
- contain-size-023.html (live test) (source)
- contain-size-025.html (live test) (source)
- contain-size-027.html (live test) (source)
- contain-size-061.html (live test) (source)
- contain-size-062.html (live test) (source)
- contain-size-borders.html (live test) (source)
- contain-size-fieldset-001.html (live test) (source)
- contain-size-fieldset-002.html (live test) (source)
- contain-size-select-001.html (live test) (source)
- contain-size-select-002.html (live test) (source)
- contain-size-scrollbars-001.html (live test) (source)
- contain-size-scrollbars-002.html (live test) (source)
- contain-size-scrollbars-003.html (live test) (source)
- contain-size-button-001.html (live test) (source)
- contain-size-flexbox-001.html (live test) (source)
- contain-size-flexbox-002.html (live test) (source)
- contain-size-grid-001.html (live test) (source)
Note: Even when the element’s sizing properties are auto this does not necessarily make the element zero-sized: properties set on the element itself, such as the columns property or the grid property, continue to be taken into account.
- contain-size-grid-002.html (live test) (source)
- contain-size-grid-003.html (live test) (source)
- contain-size-multicol-001.html (live test) (source)
- contain-size-multicol-as-flex-item.html (live test) (source)
Then, its contents must then be laid out into the containing box's resolved size.
Note: size containment does not suppress baseline alignment. See layout containment for that.
Replaced elements must be treated as having an intrinsic width and height of 0.
- contain-size-013.html (live test) (source)
- contain-size-041.html (live test) (source)
- contain-size-042.html (live test) (source)
- contain-size-replaced-001.html (live test) (source)
- contain-size-replaced-002.html (live test) (source)
- contain-size-replaced-003a.html (live test) (source)
- contain-size-replaced-003b.html (live test) (source)
- contain-size-replaced-003c.html (live test) (source)
- contain-size-replaced-004.html (live test) (source)
- contain-size-replaced-005.html (live test) (source)
- contain-size-replaced-006.html (live test) (source)
-
Containing boxes for size containment are monolithic (See CSS Fragmentation Module Level 3 §possible-breaks).
By itself, size containment does not offer much optimization opportunity. Its primary benefit on its own is that tools which want to lay out the containing box’s contents based on the containing box’s size (such as a JS library implementing the "container query" concept) can do so without fear of "infinite loops", where having a child’s size respond to the size of the containing box causes the containing box’s size to change as well, possibly triggering further changes in how the child sizes itself and possibly thus more changes to the containing box’s size, ad infinitum.
When paired with layout containment, though, possible optimizations that can be enabled include (but are not limited to):
-
When the style or contents of a descendant of the containing box is changed, calculating what part of the DOM tree is "dirtied" and might need to be re-laid out can stop at the containing box.
-
When laying out the page, if the containing box is off-screen or obscured, the layout of its contents can be delayed or done at a lower priority.
3.2. Layout Containment
If the element does not generate a principal box (as is the case with display values of contents or none), or its principal box is an internal table box other than table-cell, or an internal ruby box, or a non-atomic inline-level box, layout containment has no effect. Otherwise, giving an element layout containment makes its principal box a containing box for layout containment and has the following effects:
- contain-layout-001.html (live test) (source)
- contain-layout-002.html (live test) (source)
- contain-layout-003.html (live test) (source)
- contain-layout-004.html (live test) (source)
- contain-layout-005.html (live test) (source)
- contain-layout-009.html (live test) (source)
- contain-layout-010.html (live test) (source)
- contain-layout-011.html (live test) (source)
- contain-layout-012.html (live test) (source)
- contain-layout-013.html (live test) (source)
- contain-layout-014.html (live test) (source)
- contain-layout-independent-formatting-context-003.html (live test) (source)
-
The containing box establishes an independent formatting context.
-
If at least one fragmentation container of a fragmentation context has layout containment, or if at least one fragmentation container of a fragmentation context is a descendant of containing box for layout containment and at least one subsequent fragmentation container of the same fragmentation context is not a descendant of that same element with layout containment, then the first containing box for layout containment which is either a fragmentation container itself or is an ancestor of a fragmentation container must “trap” the remainder of the fragmented flow: fragmentation must not continue past the layout containment boundary, and the last fragmentation container within the first layout containment boundary is treated as if it is the last fragmentation container in its fragmentation context.
If subsequent fragmentation containers in the fragmentation context are only generated when more content remains in the fragmented flow, then they are not generated. If they would exist regardless, they remain part of the fragmentation context, but do not receive any content from the fragmented flow.
Note: At the time of writing, no stable specification is affected by this point. Only specifications that would enable some (but not all) fragmentation containers of a fragmentation context to be layout-contained (or descendants of a layout contained element) are concerned. This is not the case of [CSS-PAGE-3] nor of [CSS-MULTICOL-1]. This requirement is nonetheless included because several mechanisms that would make this a possibility have been considered (e.g.: [CSS-REGIONS-1], ::nth-fragment(), a hypothetical selector for individual columns of a multicol…), and the guarantees that layout containment is intended to offer would not be realized if such mechanisms did not abide by this rule. [CSS-REGIONS-1] has details over how layout containment affects regions.
< article > Lorem ipsum…</ article > < div id = a ></ div > < aside > < div id = b ></ div > < div id = c ></ div > </ aside > < aside > < div id = d ></ div > < div id = e ></ div > </ aside > < div id = f ></ div > article { flow-into : foo;} #a, #b, #c, #d, #e, #f { flow-from : foo;} aside { contain : layout} In this [CSS-REGIONS-1] example, content can flow from
#a
to#b
, from#b
to#c
. However as#c
is the last fragment container in the first containing box for layout containment, it traps all the remaining content, and nothing gets flowed into#d
,#e
, or#f
. -
If the computed value of the overflow property is either visible or clip or a combination thereof, any overflow must be treated as ink overflow.
- contain-layout-ink-overflow-013.html (live test) (source)
- contain-layout-ink-overflow-014.html (live test) (source)
- contain-layout-ink-overflow-015.html (live test) (source)
- contain-layout-ink-overflow-016.html (live test) (source)
- contain-layout-ink-overflow-017.html (live test) (source)
- contain-layout-ink-overflow-018.html (live test) (source)
- contain-layout-ink-overflow-019.html (live test) (source)
- contain-layout-ink-overflow-020.html (live test) (source)
-
The containing box acts as a containing block for absolutely positioned and fixed positioned descendants.
-
The containing box creates a stacking context.
-
Forced breaks are allowed within containing boxes for layout containment, but do not propagate to the parent as otherwise described in CSS Fragmentation Module Level 3 §break-between.
- contain-layout-breaks-001.html (live test) (source)
- contain-layout-breaks-002.html (live test) (source)
Note: This introduces the previously non-existent possibility that forced breaks may occur between a box and its container (See CSS Fragmentation Module Level 3 §possible-breaks).
-
For the purpose of the vertical-align property, or any other property whose effects need to relate the position of the containing box's baseline to something other than its descendants, the containing box is treated as having no baseline.
- contain-layout-baseline-001.html (live test) (source)
- contain-layout-button-001.html (live test) (source)
- contain-layout-flexbox-001.html (live test) (source)
- contain-layout-grid-001.html (live test) (source)
- contain-layout-baseline-002.html (live test) (source)
- contain-layout-baseline-003.html (live test) (source)
- contain-layout-baseline-004.html (live test) (source)
- contain-layout-baseline-005.html (live test) (source)
Possible optimizations that can be enabled by layout containment include (but are not limited to):
-
When laying out the page, the contents of separate containing boxes can be laid out in parallel, as they’re guaranteed not to affect each other.
-
When laying out the page, if the containing box is off-screen or obscured and the layout of the visible parts of the screen do not depend on the size of the containing box (for example, if the containing box is near the end of a block container, and you’re viewing the beginning of the block container), the layout of the containing box' contents can be delayed or done at a lower priority.
(When paired with size containment, this optimization can be applied more liberally.)
3.3. Style Containment
Note: Style Containment is at-risk.
Giving an element style containment and has the following effects:
-
The counter-increment and counter-set properties must be scoped to the element’s sub-tree and create a new counter.
-
The effects of the content property’s open-quote, close-quote, no-open-quote and no-close-quote must be scoped to the element’s sub-tree.
Note: This implies that the depth of quote nesting in the subtree is unchanged and starts at the value that its context normally implies, but that changes to the depth of quote nesting by these values inside the subtree do not affect the depth of quote nesting outside the subtree.
- contain-style-baseline-001.html (live test) (source)
- contain-style-breaks-001.html (live test) (source)
- contain-style-breaks-002.html (live test) (source)
- contain-style-breaks-003.html (live test) (source)
- contain-style-breaks-004.html (live test) (source)
- contain-style-breaks-005.html (live test) (source)
Note: [CSS-REGIONS-1] has normative requirements on how style containment affects regions.
A scoped property has its effects scoped to a particular element or subtree.
-
If scoped to an element, it must act as if the scoping element was the root of the document for the purpose of evaluating the property’s effects: any uses of the property outside the scoping element must have no effect on the uses of the property on or in the scoping element, and vice versa.
Note: “Scoping to an element” is currently unused. It is defined as an extension point for future specifications to use.
-
If scoped to a sub-tree, it’s the same, except the scoping element itself is counted as "outside" the tree, like the rest of the document, and the effects of the property on that element are unaffected by scoping. When considering the effects of the scoped property on elements inside the subtree, the element at the base of the subtree is treated as if it was the root of the document.
1 1.2being displayed:
< div ></ div >
div {
contain : style;
counter-increment : n;
}
div::before, div::after {
content : counters ( n, '.' ) " " ;
}
div::after {
counter-increment : n 2 ;
}
Possible optimizations that can be enabled by style containment include (but are not limited to):
-
Whenever a property is changed on a descendant of an element with style containment, calculating what part of the DOM tree is "dirtied" and might need to have its style recalculated can stop at the containing box.
3.4. Paint Containment
If the element does not generate a principal box (as is the case with display values of contents or none), or its principal box is an internal table box other than table-cell, or an internal ruby box, or a non-atomic inline-level box, paint containment has no effect. Otherwise, giving an element paint containment makes its principal box a containing box for paint containment and has the following effects:
- contain-paint-002.html (live test) (source)
- contain-paint-005.html (live test) (source)
- contain-paint-006.html (live test) (source)
- contain-paint-007.html (live test) (source)
- contain-paint-008.html (live test) (source)
- contain-paint-011.html (live test) (source)
- contain-paint-012.html (live test) (source)
- contain-paint-014.html (live test) (source)
- contain-paint-015.html (live test) (source)
- contain-paint-016.html (live test) (source)
- contain-paint-017.html (live test) (source)
- contain-paint-018.html (live test) (source)
- contain-paint-019.html (live test) (source)
- contain-paint-independent-formatting-context-003.html (live test) (source)
-
The contents of the element including both the paint of the descendants and their geometry must be clipped to the padding edge of the containing box, taking corner clipping into account. This does not include the creation of any mechanism to access or indicate the presence of the clipped content; nor does it inhibit the creation of any such mechanism through other properties, such as overflow, resize, or text-overflow. This is as if overflow: visible was changed to overflow: clip at used value.
- contain-paint-001.html (live test) (source)
- contain-paint-004.html (live test) (source)
- contain-paint-047.html (live test) (source)
- contain-paint-048.html (live test) (source)
- contain-paint-cell-001.html (live test) (source)
- contain-paint-cell-002.html (live test) (source)
- contain-paint-clip-011.html (live test) (source)
- contain-paint-clip-012.html (live test) (source)
- contain-paint-clip-013.html (live test) (source)
- contain-paint-clip-014.html (live test) (source)
- contain-paint-clip-015.html (live test) (source)
- contain-paint-clip-016.html (live test) (source)
- contain-paint-clip-017.html (live test) (source)
- contain-paint-clip-018.html (live test) (source)
- contain-paint-clip-019.html (live test) (source)
- contain-paint-table-001.html (live test) (source)
- contain-paint-table-002.html (live test) (source)
-
The containing box acts as a containing block for absolutely positioned and fixed positioned descendants.
-
The containing box creates a stacking context.
-
The containing box establishes an independent formatting context.
-
If the containing box is off-screen or obscured, the UA can directly skip trying to paint its contents, as they’re guaranteed to be off-screen/obscured as well.
-
Unless the clipped content is made accessible via a separate mechanism such as the overflow, resize, or text-overflow properties, the UA can reserve "canvas" space for the box exactly the box’s size. (In similar, scrollable, situations, like overflow: hidden, it’s possible to scroll to the currently-clipped content, so UAs often predictively overpaint somewhat so there’s something to see as soon as the scroll happens, rather than a frame later.)
-
Because they are guaranteed to be stacking contexts, scrolling elements can be painted into a single GPU layer.
4. Privacy and Security Considerations
This specification introduces no new privacy or security considerations.
Like any other CSS specification, it affects the rendering of the document, but does not introduce any special ability to present content in a misleading way that was not previously available through other CSS modules and that isn’t inherent to the act of formatting the document.
The TAG has developed a self-review questionnaire to help editors and Working Groups evaluate the risks introduced by their specifications. Answers are provided below.
- Does this specification deal with personally-identifiable information?
- No.
- Does this specification deal with high-value data?
- No.
- Does this specification introduce new state for an origin that persists across browsing sessions?
- No.
- Does this specification expose persistent, cross-origin state to the web?
- No.
- Does this specification expose any other data to an origin that it doesn’t currently have access to?
- No.
- Does this specification enable new script execution/loading mechanisms?
- No.
- Does this specification allow an origin access to a user’s location?
- No.
- Does this specification allow an origin access to sensors on a user’s device?
- No.
- Does this specification allow an origin access to aspects of a user’s local computing environment?
- No.
- Does this specification allow an origin access to other devices?
- No.
- Does this specification allow an origin some measure of control over a user agent’s native UI?
- No.
- Does this specification expose temporary identifiers to the web?
- No.
- Does this specification distinguish between behavior in first-party and third-party contexts?
- No.
- How should this specification work in the context of a user agent’s "incognito" mode?
- No difference in behavior is needed.
- Does this specification persist data to a user’s local device?
- No.
- Does this specification have a "Security Considerations" and "Privacy Considerations" section?
- Yes, this is the section you are currently reading.
- Does this specification allow downgrading default security characteristics?
- No.
Appendix A. Changes
This appendix is informative.
Changes from the Candidate Recommendation of 08 November 2018
A full Disposition of Comments is available.
-
Exclude style containment from contain: strict and contain: content, and mark it at risk.
Changes from the Candidate Recommendation of 24 May 2018
A full Disposition of Comments is available.
-
Clarify that layout containment causes overflow to be treated as ink overflow only when visible (or clip)
-
Layout containment suppresses baseline alignment, but size containment does not
-
Layout containment causes the element to establish a new stacking context
-
Size containment does not apply to tables
-
Clarify that the columns and grid properties affect the size of size-contained elements
-
Change the animation type of the contain property from discrete to not animatable
-
Define the effect of containment on SVG elements
-
Editorial improvements
-
A comprehensive test suite for the full specification was developed, see http://test.csswg.org/harness/review/css-contain-1_dev
Changes from the Candidate Recommendation of 8 August 2017
A full Disposition of Comments is available.
- Clarify to which box paint containment clips (see tests).
- Move the interaction between containment and the
bookmark-*
andstring-set
properties to [CSS-CONTENT-3] (additional tests not needed, no change in behavior). - Remove the effects of style containment on the "break-*" properties (see tests).
- Move the description of the effects of containment on regions from this specification to [CSS-REGIONS-1] (additional tests not needed, no change in behavior).
- Clarify the effects of style scoping on counter-set and counter-increment (see tests)
- Size layout and paint containment don’t apply to internal ruby elements (see tests)
- Layout, Paint, and size containments do not apply to non-atomic inlines (see tests here and one more test here)
- Align paint containment’s behavior with overflow:clip (see test)
- Elements with size containment are monolithic (see test)
- Forced breaks area allowed in elements with layout containments, but do not propagate (see tests)
- Clarify the effects of scoping to a subtree (see test)
- Clarify the effects of scoping on open/close quotes (see tests)
- Editorial clarification: replace "Becoming a formatting context" (aka "Becoming a formatting context root") with "Establish a FC" (additional tests not needed, no change in behavior)
Changes from the Working Draft of 19 April 2017
A Disposition of Comments covering this draft and the previous one together is available.
- Clarify the interaction with display: contents
- Clarify how containment works on table parts
- Move the interaction between containment and fragmentation of overflow from this specification to CSS-OVERFLOW-4
Changes from the First Public Working Draft of 21 February 2017
- Specify handling of replaced elements for size containment
- Layout containment makes element act as a containing block for absolutely positioned and fixed positioned descendants.