CSS Box Alignment Module Level 3

W3C Working Draft,

This version:
http://www.w3.org/TR/2014/WD-css-align-3-20141218/
Latest version:
http://www.w3.org/TR/css-align-3/
Editor's Draft:
http://dev.w3.org/csswg/css-align/
Previous Versions:
http://www.w3.org/TR/2013/WD-css3-align-20130514/
http://www.w3.org/TR/2012/WD-css3-align-20120612/
Feedback:
www-style@w3.org with subject line “[css-align] … message topic …” (archives)
Issue Tracking:
Tracker
Inline In Spec
Editors:
Elika J. Etemad (Invited Expert)

Abstract

This module contains the features of CSS relating to the alignment of boxes within their containers in the various CSS box layout models: block layout, table layout, flex layout, and grid layout. (The alignment of text and inline-level content is defined in [CSS3TEXT] and [CSS3LINE].)

CSS is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, in speech, etc.

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

The (archived) public mailing list www-style@w3.org (see instructions) is preferred for discussion of this specification. When sending e-mail, please put the text “css-align” in the subject, preferably like this: “[css-align] …summary of comment…

This document was produced by the CSS Working Group (part of the Style Activity).

This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

This document is governed by the 1 August 2014 W3C Process Document.

The following features are at-risk, and may be dropped during the CR period:

Table of Contents

1. Introduction

This section is not normative.

CSS Levels 1 and 2 allowed for the alignment of text via text-align and the alignment of blocks by balancing auto margins. However, except in table cells, vertical alignment was not possible. As CSS3 adds further capabilities, the ability to align boxes in various dimensions becomes more critical. This module attempts to create a cohesive and common box alignment model to share among all of CSS.

Note: The alignment of text and inline-level content is defined in [CSS3TEXT] and [CSS3LINE].

Inspiration for this document:

1.1. Module interactions

This module adds some new alignment capabilities to the block layout model described in [CSS21] chapters 9 and 10 and defines the interaction of these properties with the alignment of table cell content using vertical-align, as defined in [CSS21] chapter 17. The interaction of these properties with Grid Layout [CSS3-GRID-LAYOUT] and Flexible Box Layout [CSS3-FLEXBOX] is defined in their respective modules.

No properties in this module apply to the ::first-line or ::first-letter pseudo-elements.

1.2. Values

This specification follows the CSS property definition conventions from [CSS21]. Value types not defined in this specification are defined in CSS Level 2 Revision 1 [CSS21]. Other CSS modules may expand the definitions of these value types: for example [CSS3VAL], when combined with this module, adds the initial keyword as a possible property value.

In addition to the property-specific values listed in their definitions, all properties defined in this specification also accept the inherit keyword as their property value. For readability it has not been repeated explicitly.

2. Overview of Alignment Properties

The box alignment properties in CSS are a set of 6 properties that control alignment of boxes within other boxes. They can be described along two axises:

Note: This specification uses the terms “justify” and “align” to distinguish between alignment in the inline and stacking dimensions, respectively. The choice is somewhat arbitrary, but having the two terms allows for a consistent naming scheme that works across all of CSS’s layout models.

The following table summarizes the box alignment properties and the display types they can apply to.

Common Axis Aligns Applies to
justify-content inline content within element (effectively adjusts padding) block containers, flex containers, and grid containers
align-content stacking block containers, flex containers, and grid containers
justify-self inline element within parent (effectively adjusts margins) block-level elements and grid items
align-self stacking flex items and grid items
justify-items inline items inside element (controls child items’ justify-self: auto) grid containers
align-items stacking flex containers and grid containers

Note: The *-items values don’t affect the element itself. When set on a flex container or grid container, they specify the interpretation of any *-self: auto used on the items in the container element.

3. Alignment Values

All of the alignment properties use a common set of values, defined below.

alignment subject
The alignment subject is the thing or things being aligned by the property. For justify-self and align-self, the alignment subject is the margin box of the box the property is set on. For justify-content and align-content, the alignment subject is defined by the layout mode.
alignment container
The alignment container is the rectangle that the alignment subject is aligned within. This is defined by the layout mode, but is usually the alignment subject’s containing block.

3.1. Positional Alignment: the center, start, end, self-start, self-end, flex-start, flex-end, left, and right keywords

The positional alignment keywords specify a position for an alignment subject with respect to its alignment container.

The <item-position> set of values is used by justify-self and align-self to align the box within its alignment container, and also by justify-items and align-items (to specify default values for justify-self and align-self). The <content-position> set of values is used by justify-content and align-content to align the box’s contents within itself.

<item-position> = center | start | end | self-start | self-end |
                   flex-start | flex-end | left | right;
<content-position> = center | start | end | flex-start | flex-end | left | right;

Values have the following meanings:

center
Centers the alignment subject within its alignment container.
start
Aligns the alignment subject to be flush with the alignment container’s start edge.
end
Aligns the alignment subject to be flush with the alignment container’s end edge.
self-start
Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the alignment subject’s start side.
self-end
Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the alignment subject’s end side.
flex-start
Only used in flex layout. [CSS3-FLEXBOX] Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container’s main-start or cross-start side, as appropriate. When used in layout modes other than Flexbox, this value computes to start.
flex-end
Only used in flex layout. Aligns the alignment subject to be flush with the edge of the alignment container corresponding to the flex container’s main-end or cross-end side, as appropriate. When used in layout modes other than Flexbox, this value computes to end.
left
Aligns the alignment subject to be flush with the alignment container’s line-left edge. If the property’s axis is not parallel with the inline axis, this value computes to start.
right
Aligns the alignment subject to be flush with the alignment container’s line-right edge. If the property’s axis is not parallel with the inline axis, this value computes to start.

Add example images.

3.2. Baseline Alignment: the baseline and last-baseline keywords

Baseline alignment is a form of positional alignment that aligns multiple alignment subjects within a shared alignment context (such as cells within a row or column) by matching up their alignment baselines.

The baseline alignment keywords are:

<baseline-position> = baseline | last-baseline

and are defined below:

baseline
Indicates first-baseline alignment: aligns one of the box’s first baselines with the corresponding first baselines of all the boxes in its baseline-sharing group.

If the alignment subject’s position is not fully determined by baseline alignment, the content is self-start-aligned insofar as possible while preserving the baseline alignment. (Content that has no first baselines is thus start-aligned.)

last-baseline
Indicates last-baseline alignment: aligns one of the box’s last baselines with the corresponding last baselines of all the boxes in its baseline-sharing group.

If the alignment subject’s position is not fully determined by baseline alignment, the content is self-end-aligned insofar as possible while preserving the baseline alignment. (Content that has no last baselines is thus end-aligned.)

These values give a box a baseline alignment preference: either "first" or "last", respectively.

When specified for align-content/justify-content, these values trigger baseline content-alignment, shifting the content of the box within the box, and may also affect the sizing of the box itself. See §4.1 Baseline Content-Alignment.

When specified for align-self/justify-self, these values trigger baseline self-alignment, shifting the entire box within its container, which may affect the sizing of its container. See §5.3 Baseline Self-Alignment.

If both baseline content-alignment and baseline self-alignment are specified in the same axis on the same box, only baseline self-alignment is honored in that axis; the content-alignment in that axis must be treated as self-start.

The previous paragraph is fairly arbitrary. Need some experience to make sure it’s the correct choice out of the two possibilities.

Add example images here.

Note: The vertical-align property will also need a first-baseline value because per CSS2.1 for inline blocks, baseline is equivalent to last-baseline.

3.3. Distributed Alignment: the stretch, space-between, space-around, and space-evenly keywords

The distribution values are used by justify-content and align-content to distribute the alignment subjects evenly between the start and end edges of the alignment container. When the alignment subjects cannot be distributed in this way, they behave as their fallback alignment. Each distribution value has an associated <content-position> as a fallback alignment, but one can alternatively be explicitly specified in the property.

<content-distribution> = space-between | space-around | space-evenly | stretch
space-between
The alignment subjects are evenly distributed in the alignment container. The first alignment subject is placed flush with the start edge of the alignment container, the last alignment subject is placed flush with the end edge of the alignment container, and the remaining alignment subjects are distributed so that the spacing between any two adjacent alignment subjects is the same. Unless otherwise specified, this value falls back to start.
space-around
The alignment subjects are evenly distributed in the alignment container, with a half-size space on either end. The alignment subjects are distributed so that the spacing between any two adjacent alignment subjects is the same, and the spacing before the first and after the last alignment subject is half the size of the other spacing. Unless otherwise specified, this value falls back to center.
space-evenly
The alignment subjects are evenly distributed in the alignment container, with a full-size space on either end. The alignment subjects are distributed so that the spacing between any two adjacent alignment subjects, before the first alignment subject, and after the last alignment subject is the same. Unless otherwise specified, this value falls back to center.
stretch
If the combined size of the alignment subjects is less than the size of the alignment container, any auto-sized alignment subjects have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width, so that the combined size exactly fills the alignment container.

Unless otherwise specified, this value falls back to flex-start. (For layout modes other than flex layout, flex-start is identical to start.)

Should this value allow a fallback alignment on align-self and justify-self, like it does on align-content and justify-content?

Add even more example images.

3.4. Overflow Alignment: the safe and true keywords

When the alignment subject is larger than the alignment container, it will overflow. Some alignment modes, if honored in this situation, may cause data loss: for example, if the contents of a sidebar are centered, when they overflow they may send part of their boxes past the viewport’s start edge, which can’t be scrolled to.

To help combat this problem, an overflow alignment mode can be explicitly specified. "True" alignment honors the specified alignment mode in overflow situations, even if it causes data loss, while "safe" alignment changes the alignment mode in overflow situations in an attempt to avoid data loss.

If the overflow alignment isn’t explicitly specified, the default overflow alignment is determined by the layout mode. Document-centric layout modes, such as block layout, default to "safe" overflow alignment, while design-centric layout modes, such as flex layout, default to "true" overflow alignment.

<overflow-position> = true | safe
safe
If the size of the alignment subject overflows the alignment container, the alignment subject is instead aligned as if the alignment mode were start.
true
Regardless of the relative sizes of the alignment subject and alignment container, the given alignment value is honored.

Transplant example 10 from flexbox.

4. Content Distribution: the justify-content and align-content properties

The content distribution properties justify-content and align-content control alignment of the box’s content within the box.

Diagram showing that the alignment of the content within the element is affected.
Name: justify-content, align-content
Value: auto | <baseline-position> | <content-distribution> || [ <overflow-position>? && <content-position> ]
Initial: auto
Applies to: block containers, flex containers, and grid containers
Inherited: no
Percentages: n/a
Media: visual
Computed value: specified value, except for auto (see prose)
Animatable: no

Aligns the contents of the box as a whole along the box’s inline/row/main axis. Values other than auto are defined above. If both a <content-distribution> and <content-position> are given, the <content-position> provides an explicit fallback alignment.


Block Containers:
The alignment container is the block container’s content box. The alignment subject is the entire contents of the block, as a unit.

The align-content property applies along the block axis, but if a <content-distribution> is specified the fallback alignment is used instead. The justify-content property does not apply to and has no effect on block containers.

All values other than auto force the block container to establish a new formatting context. For table cells, the behavior of the auto depends on the computed value of vertical-align: top makes it behave as start, middle makes it behave as center, bottom makes it behave as end, and all other values make it behave as baseline. auto otherwise behaves as start.

Multicol Layout:
The alignment container is the multi-column element’s content box. The alignment subject is the column boxes, as a unit.

The align-content property applies along the block axis, but if a <content-distribution> is specified the fallback alignment is used instead. The justify-content property does not apply to and has no effect on multi-column elements.

auto behaves as start.

Flex Containers:
auto computes to stretch.

The alignment container is the flex container’s content box. For justify-content, the alignment subjects are the flex items in each flex line; for align-content, the alignment subjects are the flex lines.

The align-content property applies along the cross axis. The justify-content property applies along the main axis, but since flexing in the main axis is controlled by flex, stretch behaves as flex-start.

See [CSS3-FLEXBOX] for details.

Grid Containers:
auto computes to start.

The alignment container is the grid container’s content box. The alignment subjects are the grid tracks.

The align-content property applies along the block (column) axis, aligning the grid rows. The justify-content property applies along the inline (row) axis, aligning the grid columns.

See [CSS3-GRID-LAYOUT] for details.

4.1. Baseline Content-Alignment

The content of boxes participating in row-like layout contexts (shared alignment contexts) can be baseline-aligned to each other. This effectively increases the padding on the box to align the alignment baseline of its contents with that of other baseline-aligned boxes in its group.

The set of boxes that participate in baseline content-alignment depends on the layout model:

Table Cells:
A table cell participates in first (last) baseline content-alignment in either its row or column (whichever matches its inline axis) if its computed align-content is baseline (last-baseline).
Flex Items:
A flex item participates in first (last) baseline content-alignment in its flex line if its computed align-content is baseline (last-baseline) and its computed align-self is stretch or start (end).
Grid Items:
A grid item participates in first (last) baseline content-alignment in either its row or column (whichever matches its inline axis) if its computed align-content is baseline (last-baseline), and its computed align-self or justify-self (whichever affects its block axis) is stretch or start (end).

If a box spans multiple shared alignment contexts, it participates in first (last) baseline content-alignment within its start-most (end-most) shared alignment context along that axis.

When a box participates in first (last) baseline content-alignment its alignment subject is aligned to the start (end) edge of its alignment container and the minimum necessary extra space is added between its start (end) edge and the alignment subject to match its alignment baseline in that axis up to that of its baseline-sharing group. See §7.3 Aligning Boxes by Baseline. This increases the intrinsic size of the box.

4.2. Overflow and Scroll Positions

The content distribution properties also affect the initial scroll position, setting it to display the appropriate portion of the scrollable area. In other words, the scrollable area is aligned relative to the viewport as specified by the content distribution property.

For example, if a scrollable flex container is set to justify-content: flex-end (or justify-content: flex-start with flex-flow: row-reverse), it will be initially displayed scrolled all the way to the main-end edge of the scrollable area, and its content will overflow its main-start edge.

This needs to be integrated with overflow-anchor, when the property exists, so that you get the same behavior whether an elements *starts out* overflowing, or is filled element-by-element.

5. Self-Alignment: Aligning the Box within its Parent

The justify-self and align-self properties control alignment of the box within its containing block.

Diagram showing that the alignment of the element within its containing block is affected.

5.1. Inline/Main-Axis Alignment: the justify-self property

Name: justify-self
Value: auto | stretch | <baseline-position> | [ <overflow-position>? && <item-position> ]
Initial: auto
Applies to: block-level boxes, absolutely-positioned boxes, and grid items
Inherited: no
Percentages: n/a
Media: visual
Computed value: specified value, except for auto (see prose)
Animatable: no

Justifies the box within its parent along the inline/row/main axis: the box’s outer edges are aligned within its alignment container as described by its alignment value.

The auto keyword computes to itself on absolutely-positioned elements, and to the computed value of justify-items on the parent (minus any legacy keywords) on all other boxes, or start if the box has no parent.


Block-level Boxes:
The justify-self property applies along its containing block’s inline axis.

The alignment container is the block’s containing block except that for block-level elements that establish a block formatting context and are placed next to a float, the alignment container is reduced by the space taken up by the float. (Note: This is the legacy behavior of HTML align.) The alignment subject is the block’s margin box.

The default overflow alignment is safe. In terms of CSS2.1 block-level formatting [CSS21], the rules for "over-constrained" computations in section 10.3.3 are ignored in favor of alignment as specified here and the used value of the offset properties are not adjusted to correct for the over-constraint.

This property does not apply to floats.

Absolutely-positioned Boxes:
The justify-self property applies along its containing block’s inline axis.

When neither margin in this dimension is auto and neither offset property in this dimension is auto, values other than stretch cause non-replaced absolutely-positioned boxes to use shrink-to-fit sizing for calculating auto measures, and justify-self dictates alignment as follows:

The alignment container is the box’s containing block as modified by the offset properties (top/right/bottom/left). The alignment subject is the box’s margin box.

The default overflow alignment is safe. In terms of CSS2.1 formatting [CSS21], the rules for "over-constrained" computations in section 10.3.7 are ignored in favor of alignment as specified here and the used value of the offset properties are not adjusted to correct for the over-constraint.

The auto keyword is equivalent to start on replaced absolutely-positioned boxes, and equivalent to stretch on all other absolutely-positioned boxes. (This is because CSS 2.1 does not stretch replaced elements to fit into fixed offsets.)

Table Cells:
This property does not apply to table cells, because their position and size is fully constrained by table layout.
Flex Items:
This property does not apply to flex items, because there is more than one item in the main axis. See flex for stretching and justify-content for main-axis alignment. [CSS3-FLEXBOX]
Grid Items:
The justify-self property applies along the grid’s row axis.

The alignment container is the grid cell. The alignment subject is the grid item’s margin box. The default overflow alignment is true.

The effect of these rules is that an auto-sized block-level table, for example, can be aligned while still having side margins. If the table’s max-content size is narrower than its containing block, then it is shrink-wrapped to that size and aligned as specified. If the table’s max-content size is wider, then it fills its containing block, and the margins provide appropriate spacing from the containing block edges.

5.2. Block/Cross-Axis Alignment: the align-self property

Name: align-self
Value: auto | stretch | <baseline-position> | [ <overflow-position>? && <item-position> ]
Initial: auto
Applies to: flex items, grid items, and absolutely-positioned boxes
Inherited: no
Percentages: n/a
Media: visual
Computed value: specified value, except for auto (see prose)
Animatable: no

Aligns the box within its parent along the block/column/cross axis: the box’s outer edges are aligned within its alignment container as described by its alignment value.

The auto keyword computes to itself on absolutely-positioned elements, and to the computed value of align-items on the parent (minus any legacy keywords) on all other boxes, or start if the box has no parent.


Block-level Boxes:
The align-self property does not apply to block-level boxes (including floats), because there is more than one item in the block axis.
Absolutely-positioned Boxes:
The align-self property applies along its containing block’s block axis.

When neither margin in this dimension is auto and neither offset property in this dimension is auto, values other than stretch cause non-replaced absolutely-positioned boxes to use shrink-to-fit sizing for calculating auto measures, and align-self dictates alignment as follows:

The alignment container is the box’s containing block as modified by the offset properties (top/right/bottom/left). The alignment subject is the box’s margin box.

The default overflow alignment is safe. In terms of CSS2.1 formatting [CSS21], the rules for "over-constrained" computations in section 10.6.4 are ignored in favor of alignment as specified here and the used value of the offset properties are not adjusted to correct for the over-constraint.

The auto keyword is equivalent to start on replaced absolutely-positioned boxes, and equivalent to stretch on all other absolutely-positioned boxes. (This is because CSS 2.1 does not stretch replaced elements to fit into fixed offsets.)

Table Cells:
This property does not apply to table cells, because their position and size is fully constrained by table layout.
Flex Items:
The align-self property applies along the flexbox’s cross axis.

The alignment container is the flex line the item is in. The alignment subject is the flex item’s margin box. The default overflow alignment is true. See [CSS3-FLEXBOX] for details.

Grid Items:
The align-self property applies along the grid’s column axis.

The alignment container is the grid cell. The alignment subject is the grid item’s margin box. The default overflow alignment is true.

5.3. Baseline Self-Alignment

Boxes participating in row-like layout contexts (shared alignment contexts) can be baseline-aligned to each other. This effectively increases the margins on the box to align its alignment baseline with other baseline-aligned boxes in its group.

The set of boxes that participate in baseline self-alignment depends on the layout model:

Flex Items:
A flex item participates in first (last) baseline self-alignment in its flex line if its computed align-self is baseline (last-baseline). See [CSS3-FLEXBOX] for details.
Grid Items:
A grid item participates in first (last) baseline content-alignment in either its row or column (whichever matches its inline axis) if its justify-self or align-self property (whichever matches its inline axis) computes to baseline (last-baseline).

If a box spans multiple shared alignment contexts, it participates in first (last) baseline self-alignment within its start-most (end-most) shared alignment context along that axis.

When a box participates in first (last) baseline self-alignment its alignment subject is aligned to the start (end) edge of its alignment container and the minimum necessary extra space is added between its start (end) edge and the alignment container to match its alignment baseline in that axis up to that of its baseline-sharing group. See §7.3 Aligning Boxes by Baseline. This may increase the intrinsic size contribution of the alignment subject.

6. Default Alignment

The align-items and justify-items properties set the default align-self and justify-self behavior of the items contained by the element.

Diagram showing that the alignment of grid items within the element is affected.

6.1. Inline/Main-Axis Alignment: the justify-items property

Name: justify-items
Value: auto | stretch | <baseline-position> | [ <item-position> && <overflow-position>? ] | [ legacy && [ left | right | center ] ]
Initial: auto
Applies to: block containers, flex containers, and grid containers
Inherited: no
Percentages: n/a
Media: visual
Computed value: specified value, except for auto (see prose)
Animatable: no

This property specifies the default justify-self for all of the boxes (including anonymous boxes) participating in this box’s formatting context. Values have the following meanings:

auto
If the inherited value of justify-items includes the legacy keyword, auto computes to the the inherited value.

Otherwise, auto computes to:

  • stretch for flex containers and grid containers
  • start for everything else
legacy
This keyword causes the value to effectively inherit into descendants. It can only be combined with the center, left, and right positions. When justify-self:auto retrieves the value of justify-items, only the alignment keyword, not the legacy keyword, is passed to it. It exists to implement the legacy alignment behavior of HTML’s <center> element and align attribute.

Other values have no special handling and are merely passed to justify-self.

6.2. Block/Cross-Axis Alignment: the align-items property

Name: align-items
Value: auto | stretch | <baseline-position> | [ <item-position> && <overflow-position>? ]
Initial: auto
Applies to: block-level elements
Inherited: no
Percentages: n/a
Media: visual
Computed value: specified value, except for auto (see prose)
Animatable: no

This property specifies the default align-self for all of the boxes (including anonymous boxes) participating in this box’s formatting context. Values have the following meanings:

auto
Computes to:
  • stretch for flex containers and grid containers
  • start for everything else

Other values have no special handling and are merely passed to align-self.

7. Baseline Alignment Details

7.1. Determining the Baseline of a Box

The first baselines (and last baselines) of a box for a given axis are a set of baselines (alphabetic, central, etc.) nominally associated with the first (last) line of text within the box. The alignment baseline is one of these, usually the dominant baseline of the alignment container. (See alignment-baseline.) Note that boxes might not have baselines in a particular axis.

The first and last baselines of a box are determined differently based on the layout model, as follows:

block containers
The first (last) inline-axis baselines of a block container are generated from the dominant first (last) baseline of the first (last) in-flow line box in the block container, or are taken from the first (last) in-flow block-level child in the block container that contributes a set of first (last) baselines, whichever comes first (last). If there is no such line box or child, then the block container has no baselines. For the purposes of finding the baselines, in-flow boxes with a scrolling mechanisms (see the overflow property) must be considered as if scrolled to their origin (final) position.

A block container has no block-axis baselines.

tables
The first (last) inline-axis baselines of a table box are the first (last) baselines of its first (last) row.

When finding the baselines of an inline-block, any baselines contributed by table boxes must be skipped. (This quirk is a legacy behavior from [CSS21].)

The first (last) block-axis baselines of a table box are the first (last) baselines of its first (last) column.

table rows
If any cells in the row participate in baseline (last-baseline) alignment along the row axis, the first (last) inline-axis baselines of the row are generated from their shared alignment baseline and the row’s first available font, after alignment has been performed. Otherwise, the first (last) inline-axis baselines of the row are synthesized from the lowest and highest content edges of the cells in the row. [CSS21]

A table row has no block-axis baselines.

table columns
If any cells in the column participate in baseline (last-baseline) alignment along the column axis (by having a writing mode perpendicular to that of the table), the first (last) block-axis baselines of the column are generated from their shared alignment baseline and the column’s first available font, after alignment has been performed. Otherwise, the the first (last) inline-axis baselines of the row are synthesized from the extreme content edges of the cells in the row. [CSS21]

A table column has no inline-axis baselines.

flex containers
See Flex Baselines in [CSS3-FLEXBOX].
grid containers
See Grid Baselines in [CSS3-GRID-LAYOUT].

To generate baselines for a box from a single baseline, use the baseline table from the font settings and first available font of that box, and align that baseline set to the given single baseline.

To synthesize baselines from a rectangle (or two parallel lines), synthesize the alphabetic baseline from the lower line and the central baseline by averaging the positions of the upper and lower lines.

Note: The forthcoming Inline Layout Module will define synthesis rules for baselines other than alphabetic and central.

Maybe these things are wrong? CSS 2.1 is really weird about baseline alignment.

7.2. Baseline Alignment Terminology

A baseline-sharing group is composed of boxes that participate in baseline alignment together. This is possible only if they

Boxes share an alignment context along a particular axis when they are:

Boxes in a baseline-sharing group are aligned to each other using their alignment baseline. This is the dominant baseline associated with the box that generates their shared alignment context on the first (last, for last-baseline alignment) formatted line. For example, in horizontal writing modes, specifying align-content: baseline on table cells in the same row will align the alphabetic baselines of their first formatted lines.

7.3. Aligning Boxes by Baseline

Given a set of boxes and their baselines that all belong to a single baseline-sharing group, the boxes are baseline-aligned as follows:

First, generate the alignment context’s baseline table from its first available font and overlay also the mirror of this baseline table by aligning their central baselines. These are the baseline grids to which the boxes will align.

Next, align all boxes by their specified alignment baseline to the alignment context’s baseline table or its mirror, whichever matches its line orientation. Unless otherwise specified (e.g. via the alignment-baseline property), the alignment baseline is the dominant baseline of the alignment context.

Position this aligned subtree within the alignment container according to the rules of the box alignment properties in effect.

8. Changes

Changes since the previous Working Draft include:

Acknowledgments

Special thanks goes to Markus Mielke, Alex Mogilevsky, and the participants in the CSSWG’s March 2008 F2F alignment discussions.

Conformance

Document conventions

Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification.

All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [RFC2119]

Examples in this specification are introduced with the words "for example" or are set apart from the normative text with class="example", like this:

This is an example of an informative example.

Informative notes begin with the word "Note" and are set apart from the normative text with class="note", like this:

Note, this is an informative note.

Advisements are normative sections styled to evoke special attention and are set apart from other normative text with <strong class="advisement">, like this: UAs MUST provide an accessible alternative.

Conformance classes

Conformance to this specification is defined for three conformance classes:

style sheet
A CSS style sheet.
renderer
A UA that interprets the semantics of a style sheet and renders documents that use them.
authoring tool
A UA that writes a style sheet.

A style sheet is conformant to this specification if all of its statements that use syntax defined in this module are valid according to the generic CSS grammar and the individual grammars of each feature defined in this module.

A renderer is conformant to this specification if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the features defined by this specification by parsing them correctly and rendering the document accordingly. However, the inability of a UA to correctly render a document due to limitations of the device does not make the UA non-conformant. (For example, a UA is not required to render color on a monochrome monitor.)

An authoring tool is conformant to this specification if it writes style sheets that are syntactically correct according to the generic CSS grammar and the individual grammars of each feature in this module, and meet all other conformance requirements of style sheets as described in this module.

Partial implementations

So that authors can exploit the forward-compatible parsing rules to assign fallback values, CSS renderers must treat as invalid (and ignore as appropriate) any at-rules, properties, property values, keywords, and other syntactic constructs for which they have no usable level of support. In particular, user agents must not selectively ignore unsupported component values and honor supported values in a single multi-value property declaration: if any value is considered invalid (as unsupported values must be), CSS requires that the entire declaration be ignored.

Experimental implementations

To avoid clashes with future CSS features, the CSS2.1 specification reserves a prefixed syntax for proprietary and experimental extensions to CSS.

Prior to a specification reaching the Candidate Recommendation stage in the W3C process, all implementations of a CSS feature are considered experimental. The CSS Working Group recommends that implementations use a vendor-prefixed syntax for such features, including those in W3C Working Drafts. This avoids incompatibilities with future changes in the draft.

Non-experimental implementations

Once a specification reaches the Candidate Recommendation stage, non-experimental implementations are possible, and implementors should release an unprefixed implementation of any CR-level feature they can demonstrate to be correctly implemented according to spec.

To establish and maintain the interoperability of CSS across implementations, the CSS Working Group requests that non-experimental CSS renderers submit an implementation report (and, if necessary, the testcases used for that implementation report) to the W3C before releasing an unprefixed implementation of any CSS features. Testcases submitted to W3C are subject to review and correction by the CSS Working Group.

Further information on submitting testcases and implementation reports can be found from on the CSS Working Group’s website at http://www.w3.org/Style/CSS/Test/. Questions should be directed to the public-css-testsuite@w3.org mailing list.

References

Normative References

[CSS21]
Bert Bos; et al. Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. 7 June 2011. W3C Recommendation. URL: http://www.w3.org/TR/2011/REC-CSS2-20110607
[CSS3-FLEXBOX]
Tab Atkins Jr.; Elika J. Etemad; Alex Mogilevsky. CSS Flexible Box Layout Module. 18 September 2012. W3C Candidate Recommendation. (Work in progress.) URL: http://www.w3.org/TR/2012/CR-css3-flexbox-20120918/
[CSS3-GRID-LAYOUT]
Tab Atkins Jr.; Elika J. Etemad; Rossen Atanassov. CSS Grid Layout. 2 April 2013. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2013/WD-css3-grid-layout-20130402/
[rfc2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://tools.ietf.org/html/rfc2119

Informative References

[CSS3LINE]
Michel Suignard; Eric A. Meyer. CSS3 module: line. 15 May 2002. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2002/WD-css3-linebox-20020515
[CSS3TEXT]
Elika J. Etemad; Koji Ishii. CSS Text Module Level 3. 13 November 2012. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2012/WD-css3-text-20121113/
[CSS3VAL]
Håkon Wium Lie; Tab Atkins; Elika J. Etemad. CSS Values and Units Module Level 3. 30 July 2013. W3C Candidate Recommendation. (Work in progress.) URL: http://www.w3.org/TR/2013/CR-css3-values-20130730/

Index

Property Index

Name Value Initial Applies to Inh. %ages Media Animatable Computed value
justify-content auto | <baseline-position> | <content-distribution> || [ <overflow-position>? && <content-position> ] auto block containers, flex containers, and grid containers no n/a visual no specified value, except for auto (see prose)
align-content auto | <baseline-position> | <content-distribution> || [ <overflow-position>? && <content-position> ] auto block containers, flex containers, and grid containers no n/a visual no specified value, except for auto (see prose)
justify-self auto | stretch | <baseline-position> | [ <overflow-position>? && <item-position> ] auto block-level boxes, absolutely-positioned boxes, and grid items no n/a visual no specified value, except for auto (see prose)
align-self auto | stretch | <baseline-position> | [ <overflow-position>? && <item-position> ] auto flex items, grid items, and absolutely-positioned boxes no n/a visual no specified value, except for auto (see prose)
justify-items auto | stretch | <baseline-position> | [ <item-position> && <overflow-position>? ] | [ legacy && [ left | right | center ] ] auto block containers, flex containers, and grid containers no n/a visual no specified value, except for auto (see prose)
align-items auto | stretch | <baseline-position> | [ <item-position> && <overflow-position>? ] auto block-level elements no n/a visual no specified value, except for auto (see prose)

Issues Index

Add example images.
The previous paragraph is fairly arbitrary. Need some experience to make sure it’s the correct choice out of the two possibilities.
Add example images here.
Should this value allow a fallback alignment on align-self and justify-self, like it does on align-content and justify-content?
Add even more example images.
Transplant example 10 from flexbox.
This needs to be integrated with overflow-anchor, when the property exists, so that you get the same behavior whether an elements *starts out* overflowing, or is filled element-by-element.
Maybe these things are wrong? CSS 2.1 is really weird about baseline alignment.