内容简介:. This document describes the basic aims of the specification.Many webpages contain a number of sections which are independent of each other. For example a listing of article headlines and content, as in the mark-up below.Each article has the
contain
. This document describes the basic aims of the specification.
Basic example
Many webpages contain a number of sections which are independent of each other. For example a listing of article headlines and content, as in the mark-up below.
<h1>My blog</h1> <article> <h2>Heading of a nice article</h2> <p>Content here.</p> </article> <article> <h2>Another heading of another article</h2> <p>More content here.</p> </article>
Each article has the
contain
property with a value of content
applied in the CSS.
article { contain: content; }
Each article is independent of the other articles on the page, and so they have been given contain: content
in order to indicate to the browser that this is the case. The browser can then use this information to make decisions about how to render the content. For example, it might not render articles that are outside the viewable area.
If we give each <article>
the contain
property with a value of content
, when new elements are inserted the browser understands it does not need to relayout or repaint any area outside of the containing element's subtree, although if the <article>
is styled such that its size depends on its contents (e.g. with height: auto
), then the browser may need to account for its size changing).
We have told it by way of the contain
property that each article is independent.
The content
value is shorthand for contain: layout paint
. It tells the browser that the internal layout of the element is totally separate from the rest of the page, and that everything about the element is painted inside its bounds. Nothing can visibly overflow.
This information is something that is usually known, and in fact quite obvious, to the web developer creating the page. However browsers cannot guess at your intent and cannot assume that an article will be entirely self-contained. Therefore this property gives you a nice way to explain to the browser this fact, and allow it to make performance optimizations based on that knowledge.
Key concepts and terminology
This specification defines only one property, the
contain
property. The values for this property indicate the type of containment that you want to apply to that element.
Layout containment
article { contain: layout; }
Layout is normally scoped to the entire document, which means that if you move one element the entire document needs to be treated as if things could have moved anywhere. By using contain: layout
you can tell the browser it only needs to check this element — everything inside the element is scoped to that element and does not affect the rest of the page, and the containing box establishes an independent formatting context.
In addition:
-
float
layout will be performed independently. - Margins won't collapse across a layout containment boundary
-
The layout container will be a containing block for
absolute
/fixed
position descendants. -
The containing box creates a stacking context, therefore
z-index
can be used.
Paint containment
article { contain: paint; }
Paint containment essentially clips the box to the padding edge of the principal box. There can be no visible overflow. The same things are true for paint
containment as layout
containment (see above).
Another advantage is that if the containing box is offscreen, the browser does not need to paint its contained elements — these must also be offscreen as they are contained completely by that box.
Size containment
article { contain: size; }
Size containment does not offer much in the way of performance optimizations when used on its own. However, it means that the size of the element's children cannot affect the size of the element itself — its size is computed as if it had no children.
If you turn on contain: size
you need to also specify the size of the element you have applied this to. It will end up being zero-sized in most cases, if you don't manually give it a size.
Style containment
article { contain: style; }
Despite the name, style containment does not provide scoped styles such as you would get with theShadow DOM. The main use case is to prevent situations where aCSS Counter could be changed in an element, which could then affect the rest of the tree.
Using contain: style
would ensure that the
counter-increment
and
counter-set
properties created new counters scoped to that subtree only.
Note: style
containment is "at-risk" in the spec and may not be supported everywhere (it's not currently supported in Firefox).
Special values
There are two special values of contain:
content strict
We encountered the first in the example above. Using contain: content
turns on layout
and paint
containment. The specification describes this value as being "reasonably safe to apply widely". It does not apply size
containment, so you would not be at risk of a box ending up zero-sized due to a reliance on the size of its children.
To gain as much containment as possible use contain: strict
, which behaves the same as contain: size layout paint
, or perhaps the following to also add style
containment in browsers that support it:
contain: strict; contain: strict style;
Reference
CSS Properties
External resources
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
世界是平的(3.0版)
[美] 托马斯·弗里德曼 / 何帆、肖莹莹、郝正非 / 湖南科学技术出版社 / 2008-9 / 58.00元
世界变得平坦,是不是迫使我们跑得更快才能拥有一席之地? 在《世界是平的》中,托马斯·弗里德曼描述了当代世界发生的重大变化。科技和通信领域如闪电般迅速的进步,使全世界的人们可以空前地彼此接近——在印度和中国创造爆炸式增长的财富;挑战我们中的一些人,比他们更快占领地盘。3.0版新增两章,更新了报告和注释方面的内容,这些内容均采自作者考察世界各地特别是整个美国中心地带的见闻,在美国本土,世界的平坦......一起来看看 《世界是平的(3.0版)》 这本书的介绍吧!