Visual formatting model details
Definition of ‘containing block’
During layout, the containing block of an element is fixed when the element is encountered in the document tree. It is sized as follows:
- For the root element of the document (the
bodyelement), the containing block is the size of the document’s context. - For other elements (other than absolutely positioned elements), the containing block is the size of the nearest block ancestor’s content area. If the block ancestor does not have a fixed height (ie, its
heightproperty is set toauto), the height of the containing block is given by the height of the nearest block ancestor’s fixed content area. This may end up as the height of the context. - If the element is positioned
fixedorabsolute, its containing block is given by the padded size of the nearest block element with apositionother thanstatic, or the root if no such element exists. Like other elements, they will look further back in order to get a fixed height.
Content width: the ‘width’ property
width
| Value: | <length> | <percentage> | auto |
| Initial: | auto |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the width of the containing block |
This property only applies to block boxes and inline boxes with an intrinsic width. Other inline boxes are sized by their content.
Values have the following meaning:
<length>- Specifies a fixed width.
<percentage>- Specifies a width relative to the width of the box’s containing block.
auto- The width depends on the values of other properties. See below.
/* Fixes the width of input elements of class 'text' to 12 times their line height. */
input.text
{
width: 12em;
}
Computing widths and margins
If any of a box’s width, margin-left or margin-right are set to auto, then they are evaluated when the box is sized. Depending on the box type, they are set as follows:
- For an inline non-replaced box, any
automargins are set to ‘0’.widthis ignored. - For an inline replaced box,
automargins are set to ‘0’. Awidthofautois set to the element’s intrinsic width. - For a block box, the formula
margin-left + border-left-width + padding-left + 'content width' + padding-right + border-right-width + margin-right = containing block widthmust hold true. Ifwidthisauto, then anyautomargins are set to ‘0’ and the box width is set to the appropriate value. Otherwise, the inequality in the equation is split evenly between the auto-margins.
This is different from the CSS equation in the following ways:
- The
leftandrightproperties cannot be set toauto. - Floating and positioned boxes are evaluated like normal boxes.
Minimum and maximum widths: ‘min-width’ and ‘max-width’
min-width
| Value: | <length> | <percentage> |
| Initial: | 0px |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the width of the containing block |
max-width
| Value: | <length> | <percentage> |
| Initial: | -1px |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the width of the containing block |
Values have the following meaning:
<length>- Specifies a fixed minimum or maximum width.
<percentage>- Specifies a minimum or maximum width relative to the width of the containing block.
Note that there is no auto value for max-width; instead, if it is a negative number there is no maximum width.
When evaluating width, if the computed width is greater than max-width, then the width is computed again, this time substituting max-width for width. If the computed value is less than min-width, the the width is computed again, this time substituting min-width for width.
Content height: the ‘height’ property
height
| Value: | <length> | <percentage> | auto |
| Initial: | auto |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the height of the containing block |
This property only applies to block boxes and inline boxes with an intrinsic height. Other inline boxes are sized by their content.
Values have the following meaning:
<length>- Specifies a fixed height.
<percentage>- Specifies a height relative to the height of the box’s containing block.
auto- The width depends on the values of other properties. See below.
/* Fixes the height of the background div to 100% of its containing block. */
div#background
{
height : 100%;
}
Computing heights and margins
If any of a box’s height, margin-top or margin-bottom are set to auto, then they are evaluated when the box is sized. Depending on the box type, they are set as follows:
- For an inline non-replaced box, any
automargins are set to ‘0’.heightis ignored. - For an inline replaced box,
automargins are set to ‘0’. Aheightofautois set to the element’s intrinsic width. - For a block box with a fixed height, the formula
margin-top + border-top-width + padding-top + 'content height' + padding-bottom + border-bottom-width + margin-bottom = containing block heightmust hold true. The inequality in the equation is split evenly between the auto-margins. - For a block box with an
autoheight, anyautomargins are set to ‘0’, and the height will stretch to fit the box’s content exactly.
This is different from the CSS equation in the following ways:
- The
topandbottomproperties cannot be set toauto. - Floating and positioned boxes are evaluated like normal boxes.
- Block boxes with a fixed height will resolve
autovertical margins similarly to horizontal margins.
Minimum and maximum heights: ‘min-height’ and ‘max-height’
min-height
| Value: | <length> | <percentage> |
| Initial: | 0px |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the height of the containing block |
max-height
| Value: | <length> | <percentage> |
| Initial: | -1px |
| Applies to: | block and replaced inline elements |
| Inherited: | no |
| Percentages: | relative to the height of the containing block |
Values have the following meaning:
<length>- Specifies a fixed minimum or maximum height.
<percentage>- Specifies a minimum or maximum height relative to the height of the containing block.
Note that there is no auto value for max-height; instead, if it is a negative number there is no maximum height.
When evaluating height, if the computed width is greater than max-height, then the height is computed again, this time substituting max-height for height. If the computed value is less than min-height, the the width is computed again, this time substituting min-height for height. A block box with a height of auto will never set its height below min-height or above max-height; this may result in overflow.
Line height calculations: the ‘line-height’ and ‘vertical-align’ properties
The height of a line box is determined as follows:
- The height of each inline element is calculated.
- The inline boxes are aligned vertically (by their
vertical-alignproperty) - The line box height is given by distance between the top edge of the highest box and the bottom edge of the lowest box.
Note that vertical padding, margins and borders of inline boxes are not taken into account when determining line box height, although they are rendered.
line-height
| Value: | <number> | <length> | <percentage> |
| Initial: | 1.2 |
| Applies to: | all elements |
| Inherited: | yes |
| Percentages: | relative to the the font size of the element itself |
This property determines the minimal height of the element’s inline boxes.
Values for this property have the following meanings:
<number>- The line height is set to the element’s font height scaled by this number.
<length>- The line height is set to this fixed value.
<percentage>- The line height is set to the element’s font height scaled by the percentage.
/* Three ways of setting the same line-height. */
div
{
line-height: 1.3;
line-height: 1.3em;
line-height: 130%;
}
vertical-align
| Value: | baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length> |
| Initial: | baseline |
| Applies to: | inline-level elements |
| Inherited: | no |
| Percentages: | relative to the element’s line-height |
This property affects the vertical positioning of an inline box within the line box.
The values have the following meanings:
baseline- Align the baseline of the inline box with the baseline of the line box.
sub- Set the baseline of the inline box to an appropriate height for rendering subscript.
super- Set the baseline of the inline box to an appropriate height for rendering superscript.
text-top- Align the top of the inline box with the top of the parent box’s font.
text-bottom- Align the bottom of the inline box with the bottom of the parent box’s font. middle: Align the midpoint of the box with the bottom of the parent box’s font plus half the ex height.
top- Align the top of the inline box with the top of the line box.
bottom- Align the bottom of the inline box with the bottom of the line box.
<percentage>- Raise or lower the element from the baseline by the line-height scaled by this percentage.
<length>- Raise or lower the element from the baseline by a fixed amount.
/* Sample RCSS for defining a superscript tag. */
super
{
vertical-align: super;
}
/* Sample RML demonstrating rendering a superscript. */
<p>
Better than ever before!<super>*</super>
</p>