One or more of the following scenarios will cause an element to establish its own stacking context1 for its descendants:
-
The root element always holds a root stacking context. This is why you can start arranging elements without having to position the root element first. Any element that doesn’t already participate in a local stacking context (generated by any of the other scenarios below) will participate in the root stacking context instead.
-
Setting
z-indexto anything other thanautoon an element that is positioned (i.e. an element withpositionthat isn’tstatic).-
Note that this behavior is slated to be changed for elements with
position: fixedsuch that they will always establish stacking contexts regardless of theirz-indexvalue. Some browsers have begun to adopt this behavior, however the change has not been reflected in either CSS2.1 or the new CSS Positioned Layout Module yet, so it may not be wise to rely on this behavior for now.This change in behavior is explored in another answer of mine, which in turn links to this article and this set of CSSWG telecon minutes.
-
Another exception to this is with a flex item and a grid item. Setting
z-indexwill always cause it to establish a stacking context even if it isn’t positioned.
-
-
Setting
opacityto anything less than1. -
Transforming the element:
-
Setting
transformto anything other thannone. -
Setting
transform-styletopreserve-3d. -
Setting
perspectiveto anything other thannone.
-
-
Creating a CSS region: setting
flow-fromto anything other thannoneon an element whosecontentis anything other thannormal. -
In paged media, each page-margin box establishes its own stacking context.
-
In filter effects, setting
filterto anything other thannone. -
In compositing and blending, setting
isolationtoisolateand settingmix-blend-modeto a value different fromnormal -
In will change, setting
will-changeto a property whose any non-initial value would create a stacking context. -
In masking, setting
clip-path/maskwith a value other thannone.
Note that a block formatting context is not the same as a stacking context; in fact, they are two completely independent (although not mutually exclusive) concepts.
1 This does not include pseudo-stacking contexts, an informal term that simply refers to things that behave like independent stacking contexts with respect to positioning, but actually participate in their parent stacking contexts.