This chapter defines the CSS 2.1 painting order in more detail than
described in the rest of the specification.
- Tree Order
- Preorder depth-first traversal of the rendering tree, in
logical (not visual) order for bidirectional content, after taking
into account properties that move boxes around such as the 'run-in'
value of 'display'.
- Element
- In this description, "element" refers to actual elements,
pseudo-elements, and anonymous boxes. Pseudo-elements and anonymous
boxes are treated as descendants in the appropriate places. For
example, an outside list marker comes before an adjoining ':before'
box in the line box, which comes before the content of the box, and so
forth.
The bottom of the stack is the furthest from the user, the top of the
stack is the nearest to the user:
| | | |
| | | | ⇦ ☻
| | | user
z-index: canvas -1 0 1 2
The stacking context background and most negative positioned
stacking contexts are at the bottom of the stack, while the most
positive positioned stacking contexts are at the top of the stack.
The canvas is transparent if contained within another, and given a
UA-defined color if it is not. It is infinite in extent and contains
the root element. Initially, the viewport is anchored with its top
left corner at the canvas origin.
The stacking order for an element generating a stacking context (see
the 'z-index' property) is:
- If the element is a root element:
- background color of element over the entire canvas.
- background image of element, over the entire canvas, anchored at the origin
that would be used if it was painted for the root element.
- If the element is a block, list-item, or other block equivalent:
- background color of element unless it is the root element.
- background image of element unless it is the root element.
- border of element.
Otherwise, if the element is a block level table:
- table backgrounds (color then image) unless it is the root element.
- column group backgrounds (color then image).
- column backgrounds (color then image).
- row group backgrounds (color then image).
- row backgrounds (color then image).
- cell backgrounds (color then image).
- all table borders (in tree order for separated borders).
- Stacking contexts formed by positioned descendants with negative
z-indices (excluding 0) in z-index order (most negative first)
then tree order.
- For all its in-flow, non-positioned, block-level descendants in
tree order: If the element is a block, list-item, or other block
equivalent:
- background color of element.
- background image of element.
- border of element.
Otherwise, the element is a table:
- table backgrounds (color then image).
- column group backgrounds (color then image).
- column backgrounds (color then image).
- row group backgrounds (color then image).
- row backgrounds (color then image).
- cell backgrounds (color then image).
- all table borders (in tree order for separated borders).
- All non-positioned floating descendants, in tree order. For each one of these,
treat the element as if it created a new stacking context, but any
descendants which actually create a new stacking context should be
considered part of the parent stacking context, not this new one.
- If the element is an inline element that generates a stacking
context, then:
- For each line box that the element is in:
- Jump to 7.2.1 for the box(es) of the element in that line
box (in tree order).
- Otherwise: first for the element, then for all its in-flow,
non-positioned, block-level descendants in tree order:
- If the element is a block-level replaced element,
then: the replaced content, atomically.
- Otherwise, for each line box of that element:
- For each box that is a child of that element, in that line
box, in tree order:
- background color of element.
- background image of element.
- border of element.
- For inline elements:
- For all the element's in-flow, non-positioned, inline-level
children that are in this line box, and all
runs of text inside the element that is on this line box,
in tree order:
- If this is a run of text, then:
- any underlining affecting the text of the
element, in tree order of the elements
applying the underlining (such that the
deepest element's underlining, if any, is
painted topmost and the root element's
underlining, if any, is drawn bottommost).
- any overlining affecting the text of the
element, in tree order of the elements
applying the overlining (such that the
deepest element's overlining, if any, is
painted topmost and the root element's
overlining, if any, is drawn bottommost).
- the text.
- any line-through affecting the text of the
element, in tree order of the elements
applying the line-through (such that the
deepest element's line-through, if any, is
painted topmost and the root element's
line-through, if any, is drawn bottommost).
- Otherwise, jump to 7.2.1 for that element.
For inline-block and inline-table elements:
- For each one of these, treat the element as if it
created a new stacking context, but any
descendants which actually create a new stacking
context should be considered part of the parent
stacking context, not this new one.
For inline-level replaced elements:
- the replaced content, atomically.
Some of the boxes may have been generated by line
splitting or the Unicode bidirectional algorithm.
- Optionally, the outline of the element (see 10 below).
- Optionally, if the element is block-level, the outline of the
element (see 10 below).
- All positioned descendants with 'z-index: auto' or 'z-index: 0',
in tree order. For those with 'z-index: auto', treat the element
as if it created a new stacking context, but any descendants which
actually create a new stacking context should be considered part
of the parent stacking context, not this new one. For those with
'z-index: 0', treat the stacking context generated atomically.
- Stacking contexts formed by positioned descendants with z-indices
greater than or equal to 1 in z-index order (smallest first) then
tree order.
- Finally, implementations that do not draw outlines in steps above
must draw outlines from this stacking context at this stage. (It
is recommended to draw outlines in this step and not in the steps above.)
The background of the root element is only painted once, over the
whole canvas.
While the backgrounds of bidirectional inlines are painted in tree
order, they are positioned in visual order. Since the positioning of
inline backgrounds is unspecified in CSS 2.1, the exact result of these
two requirements is UA-defined. CSS3 may define this in more detail.