CSS Inline Layout Module Level 3

W3C Working Draft,

This version:
http://www.w3.org/TR/2015/WD-css-inline-3-20150917/
Latest version:
http://www.w3.org/TR/css-inline-3/
Editor's Draft:
http://dev.w3.org/csswg/css-inline/
Previous Versions:
http://www.w3.org/TR/2014/WD-css-inline-3-20141218/
http://www.w3.org/TR/2002/WD-css3-linebox-20020515/
Feedback:
www-style@w3.org with subject line “[css-inline] … message topic …” (archives)
Issue Tracking:
Inline In Spec
Editors:
(Hachette Livre)
Elika J. Etemad / fantasai (Invited Expert)
(Adobe)

Abstract

The CSS formatting model provides for a flow of elements and text inside of a container to be wrapped into lines. The formatting of elements and text within a line, its positioning in the inline progression direction, and the breaking of lines are described in [CSS3TEXT]. This module describes the positioning in the block progression direction both of elements and text within lines and of the lines themselves. This positioning is often relative to a baseline. It also describes special features for formatting of first lines and drop caps. It extends on the model in [CSS2].

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-inline” in the subject, preferably like this: “[css-inline] …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 September 2015 W3C Process Document.

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

“At-risk” is a W3C Process term-of-art, and does not necessarily imply that the feature is in danger of being dropped or delayed. It means that the WG believes the feature may have difficulting being interoperably implemented in a timely manner, and marking it as such allows the WG to drop the feature if necessary when transitioning to the Proposed Rec stage, without having to publish a new Candidate Rec without the feature first.

Table of Contents

1. Line Heights and Baseline Alignment

This section is being rewritten. Refer to section 10.8 of [CSS21] for the normative CSS definition or the 2002 Working Draft if you want pretty pictures. (But ignore the old text, half of it’s wrong. We’re not specifying which half, that’s to be determined.) The CSS2 specification should be used as the guideline for implementation.

The CSSWG would like to know which baseline values are necessary: if any can be dropped, or any need to be added.

1.1. Dominant Baselines: the dominant-baseline property

Name: dominant-baseline
Value: auto | text-bottom | alphabetic | central | mathematical | hanging | text-top
Initial: normal
Applies to: block containers and inline boxes
Inherited: yes
Percentages: N/A
Media: visual
Computed value: as specified
Animatable: no

This property specifies the dominant baseline, which is the baseline used to align the box’s text and inline-level contents. Values have the following meanings:

auto
Equivalent to alphabetic in horizontal writing modes and in vertical writing modes when text-orientation is sideways, sideways-right, or sideways-left. equivalent to central in vertical writing modes when text-orientation is mixed or upright.
text-bottom
Use the bottom of the em box as the baseline.
alphabetic
Use the alphabetic baseline.
central
Use the central baseline (halfway between the ascent and descent).
mathematical
Use the mathematical baseline.
hanging
Use the hanging baseline.
text-top
Use the top of the em box as the baseline.

See [CSS3-WRITING-MODES] for an introduction to dominant baselines.

Should be text-over and text-under instead of text-top and text-bottom, but maybe it’s better not to use those terms for consistency with legacy vertical-align.

1.2. Transverse Box Alignment: the vertical-align property

Name: vertical-align
Value: <‘baseline-shift’> || <‘alignment-baseline’>
Initial: baseline
Applies to: inline-level boxes
Inherited: no
Percentages: N/A
Media: visual
Computed value: as specified
Animatable: no

This shorthand property specifies how an inline-level box is aligned within the line. Values are the same as for its longhand properties, see below.

Authors should use this property (vertical-align) instead of its longhands.

1.2.1. Alignment Point: alignment-baseline longhand

Name: alignment-baseline
Value: baseline | text-bottom | alphabetic | middle | central | mathematical | text-top | bottom | center | top
Initial: baseline
Applies to: inline-level boxes
Inherited: no
Percentages: N/A
Media: visual
Computed value: as specified
Animatable: no

Specifies what point of an inline-level box is aligned to what point in the parent. Values are defined below:

For the following definitions, the margin box is used for atomic inlines, and the leading box for non-replaced inlines:

baseline
Use the dominant baseline choice of the parent. Match the box’s corresponding baseline to that of its parent.
text-bottom
Match the bottom of the box to the bottom of the parent’s content area.
alphabetic
Match the box’s alphabetic baseline to that of its parent.
middle
Align the vertical midpoint of the box with the baseline of the parent box plus half the x-height of the parent.
central
Match the box’s central baseline to the central baseline of its parent.
mathematical
Match the box’s mathematical baseline to that of its parent.
text-top
Match the top of the box to the top of the parent’s content area.

For the following definitions, the alignment subtree is as defined in [CSS21].

top
Align the top of the aligned subtree with the top of the line box.
center
Align the center of the aligned subtree with the center of the line box.
bottom
Align the bottom of the aligned subtree with the bottom of the line box.

SVG implementations may support the following aliases in order to support legacy content:

text-before-edge = text-top
text-after-edge = text-bottom

These values are not allowed in the vertical-align shorthand.

1.2.2. Alignment Shift: baseline-shift longhand

Name: baseline-shift
Value: <length> | <percentage> | sub | super
Initial: 0
Applies to: inline-level boxes
Inherited: no
Percentages: refer to the used value of line-height
Media: visual
Computed value: absolute length, percentage, or keyword specified
Animatable: no

This property specifies by how much the box is shifted up from its alignment point. It does not apply when alignment-baseline is top or bottom.

Authors should use the vertical-align shorthand instead of this property.

Values have the following meanings:

<length>
Raise (positive value) or lower (negative value) by the specified length.
<percentage>
Raise (positive value) or lower (negative value) by the specified percentage of the line-height.
sub
Lower by the offset appropriate for subscripts of the parent’s box. (The UA should use the parent’s font data to find this offset whenever possible.)
super
Raise by the offset appropriate for superscripts of the parent’s box. (The UA should use the parent’s font data to find this offset whenever possible.)

User agents may additionally support the keyword baseline as computing to 0 if is necessary for them to support legacy SVG content. Issue: We would prefer to remove this, and are looking for feedback from SVG user agents as to whether it’s necessary.

2. Initial Letters

The editors would appreciate any examples of drop initials in non-western scripts, especially Arabic and Indic scripts.

2.1. An Introduction to Initial Letters

Large, decorative letters have been used to start new sections of text since before the invention of printing. In fact, their use predates lowercase letters entirely.

2.1.1. Drop Initial

A dropped initial (or “drop cap”) is a larger-than-usual letter at the start of a paragraph, with a baseline at least one line lower than the first baseline of the paragraph. The size of the drop initial is usually indicated by how many lines it occupies. Two- and three-line drop initials are very common.

3-line drop cap with E Acute

Three-line drop initial with E acute. Since the cap-height of the drop initial aligns with the cap-height of the main text, the accent extends above the paragraph.

The exact size and position of a dropped initial depends on the alignment of its glyph. Reference points on the drop cap must align precisely with reference points in the text. In Western scripts, the top reference points are the cap height of the initial letter and of the first line of text. The bottom reference points are the alphabetic baseline of the initial letter and the baseline of the Nth line of text. Figure 2 shows a simple two-line drop cap, with the relevant reference lines marked.

drop cap showing alignment

Two-line drop cap showing baselines (green lines), cap-height (red line), and ascender (cyan line).

The alignment constraints for drop initials depend on the writing system. In ideographic scripts, the initial letter extends from the block-start edge of the first line to the block-end edge of the Nth line.

Japanese Vertical Initial

Two-line drop initial in vertical writing mode

In some Indic scripts, the top alignment point is the hanging baseline, and the bottom alignment point is the text-after-edge.

Devangari initial letter

Devangari initial letter aligned with hanging baseline. Alignment points shown in red.

2.1.2. Sunken Initial Letters

Some styles of drop initials do not align with the first line of text. A sunken initial (or “sunken cap”) both sinks below the first baseline, and extends above the first line of text.

sunken drop initial

Sunken cap. The letter drops two lines, but is the size of a three-line initial letter.

2.1.3. Raised Initial Letters

A raised initial (often called a “raised cap” or “stick-up cap”) “sinks” to the first text baseline.

Note: A proper raised initial has several advantages over simply increasing the font size of a first letter. The line spacing in the rest of the paragraph will not be altered, but text will still be excluded around large descenders. And if the size of raised initial is defined to be an integral number of lines, implicit baseline grids can be maintained.

raised cap

Raised cap. The initial letter is the size of a 3-line initial, but does not drop.

2.2. Selecting Initial Letters

Initial letters are typically a single letter, which can be selected by the ::first-letter pseudo-element, as defined in [SELECT].

Authors who need more control over which characters are included in an initial letter, or who want to apply initial-letter formatting to replaced elements or multiple words can also apply the initial-letter property to the first inline-level child of a block container.

<p>This paragraph has a dropped “T”.
<p><img alt="H" src="illuminated-h.svg">ere we have an illuminated “H”.
<p><span>Words may also</span> be given initial letter styling at the beginning of a paragraph.
::first-letter, /* style first paragraph’s T */
img, /* style illuminated H */
span /* style phrase inside span */
{ initial-letter: 2; }

2.3. Creating Initial Letters: the initial-letter property

Name: initial-letter
Value: normal | [<number> <integer>?]
Initial: normal
Applies to: ::first-letter pseudo-elements and inline-level first child of a block container
Inherited: no
Percentages: N/A
Media: visual
Computed value: as specified
Animatable: no

This property specifies styling for dropped, raised, and sunken initial letters. It takes the following values:

normal
No special initial-letter effect. Text behaves as normal.
<number>
This first argument defines the size of the initial letter, in terms of how many lines it occupies. Negative values are not allowed.
<integer>
This optional second argument argument defines the number of lines the initial letter should sink. Values must be greater than zero. If omitted, it duplicates the first argument, floored to the nearest positive whole number.

Should this be initial-letters (plural) as originally discussed? Since it can apply to multiple letters.

An initial letter is a box to which initial-letter applies and is not normal: this triggers the special layout considerations described below.

Here are some examples of initial-letter usage:
initial-letter: 3
(initial-letter: 3 3)
Represents a dropped initial 3 lines high, 3 lines deep.

3 lines high, 3 lines deep

initial-letter: 3 2
Represents a sunken initial 3 lines high, 2 lines deep.

3 lines high, 2 lines deep

initial-letter: 3 1
Represents a raised initial 3 lines high, 1 line deep.

3 lines high, 1 line deep

The following code will create a 2-line dropped initial letter at the beginning of each paragraph:
p::first-letter { initial-letter: 2; }

Define interaction with ruby. Easiest is to make it not apply to/within ruby.

The initial-letter property does not apply to boxes that are not positioned at the start of the line due to bidi reordering.

2.3.1. Properties

The following properties apply to an initial letter:

Add width/height as requested by Tantek... need to integrate with model.

2.3.2. Layout Model

An initial letter is laid out following the steps outlined below:

  1. Find the used font size based on its initial-letter size, initial-letter-align alignment points, and font metrics. Note that no layout is required in this step. The font size used for sizing the initial letter contents does not affect its computed font-size property (and therefore has no effect on the computation of em length values, etc.).
  2. Size the initial letter’s content box. The content box of a non-atomic inline initial letter is the smallest rectangle required to include the entirety of its glyphs as well as the margin boxes of any atomic inlines it contains.
  3. The initial letter’s margin box is placed at the edge of the line. If it has no padding or borders, it is negatively offset by the distance from the start edge of its content box to the point in the content that would have been placed at the start edge of the containing block if it had initial-letter: none.
  4. Exclude content within the inline letter’s margin box according to initial-letter-wrap.

2.3.3. Content-box Size, Margins, Borders, and Padding

Initial letters can be styled with margins, padding, and borders just like any other box. Unless initial-letter-align is border-box, its vertical alignment and sizing are not affected; however the effective exclusion area is (and corresponds to the margin area).

When padding and borders are zero, the initial letter may be kerned; see below.

2.4. Alignment of Initial Letters: the initial-letter-align property

As mentioned earlier, the alignment of initial letters depends on the script used. The initial-letter-align property can be used to specify the proper alignment.

Name: initial-letter-align
Value: border-box? [ alphabetic | ideographic | hebrew | hanging ] | border-box
Initial: alphabetic
Applies to: ::first-letter pseudo elements and inline level first child of a block container
Inherited: yes
Percentages: N/A
Media: visual
Computed value: specified value
Animatable: no

This property specifies the alignment points used to size and position an initial letter. Two sets of alignment points are necessary: the over and under alignment points of the initial letter are matched to corresponding over and under points of the surrounding text.

Values have the following meanings:

alphabetic
Use the alphabetic and cap-height baselines of the surrounding text to align the initial letter.
ideographic
Use the ideographic character face bottom and top edge baselines of the surrounding text to align the initial letter.
hebrew
Use the alphabetic and (as yet theoretical) hebrew hanging baseline of the surrounding text to align the initial letter.
hanging
Use the alphabetic and hanging baselines of the surrounding text to align the initial letter.
border-box
Uses the initial letter box’s line-over and line-under border edges as the over and under alignment points, respectively.

Is there proper a typographic term for the hebrew “hanging” baseline?

The vertical writing mode example from Figure 2 could be coded as:
span.initial {
  initial-letter: 2;
  initial-letter-alignment: ideographic;
}

Except when border-box is specified, the alignment points of the initial letter are automatically determined from its contents:

  1. If the initial letter is an atomic inline, use its over and under content-box edges.
  2. Else if the initial letter contains any character from the Han, Hangul, Kana, or Yi Unicode scripts, use the ideographic character face bottom and top edge baselines.
  3. Else if the initial letter contains any character from the Devanagari, Bengali, and Gurmukhi Unicode scripts, use the hanging and alphabetic baselines.
  4. Else if the initial letter contains any character from the Hebrew Unicode scripts, use the ideographic character face bottom and top edge baselines.
  5. Else use the alphabetic and cap-height baselines.

What is the proper alignment for South Asian scripts that do not have the explicit hanging baseline, such as Tamil or Telugu?

Note: The ordering of keywords in this property is fixed in case border-box is expanded to [ border-box | alphabetic | ideographic | hebrew | hanging ] to allow explicitly specifying the initial letter’s alignment points.

2.4.1. UA Default Stylesheet for initial-letter-align

In order to provide the better behavior by default, UAs must include in their default UA style sheet the following rules:

[lang=zh], [lang=ja], [lang=ko], [lang=ii] {
  initial-letter-align: ideographic;
}
[lang|=iw], [lang|=yi], [lang|=lad], [lang|=jrb] {
  initial-letter-align: hebrew;
}
[lang|=hi], [lang|=mr], [lang|=ne], , [lang|=pi], [lang|=kok], [lang|=brx], [lang|=mai], [lang|=sd], [lang|=sa] {
  initial-letter-align: hanging;
}

We don’t have a way to do subtag selection with attr selectors. (It’s a feature of :lang() in Selectors 4, but we don’t want to use that because we want to hit the language root, not all of the descendant elements.) These selectors should also include the relevant script subtags.

2.5. Sizing Initial Letters

The size of a drop initial is determined by the need to satisfy the required alignment. For an N-line drop initial in a Western script, the cap-height of the letter needs to be (N – 1) times the line-height, plus the cap-height of the surrounding text. Note this height is not the font size of the drop initial.

Actually calculating this font size is tricky. For an N-line drop initial, we find the drop initial font size to be:

Equation to calcuate drop initial font size

A three-line drop initial in Adobe Minion Pro would have a font size of 61.2pt, given 12pt text, 16pt line-height and a cap-height of 651/1000 (from the font’s OS/2 table).

The line height used in this calculation is the line-height of the containing block (or, in the case where a baseline grid is in use, the baseline-to-baseline spacing required by the baseline grid [CSS3-LINE-GRID]). The contents of the lines spanned, and therefore any variation in their heights and positions, is not accounted for.

2.5.1. Shaping and Glyph Selection

When initial-letter is not normal, shaping does not occur across the box’s boundaries, as if the zero-width non-joiner (U+200C) were inserted before/after the initial letter. For example, if the first letter of the Farsi word “پس” were styled with initial-letter: 2 1, both letters would be styled in their isolated forms, with “پ” as the initial letter, followed by the normally-styled “س”.

Are there other things we need to consider here?

2.6. Space Around Initial Letters

The glyph(s) of an initial letter do not always fit within the specified sink. For example, if an initial letter has a descender, it could crash into the (n+1)th line of text. This is not desirable.

3-line drop cap with J, with descender crashing into fourth line of text

Incorrect: three-line initial letter with descender

Text is therefore excluded around the glyph bounding boxes of the initial letters.

Specifically, for non-atomic initial letters, the content box of the element is sized to fit:

The margin box of the initial letter is then made an exclusion area for subsequent text.

3-line drop cap with J, but four-line exclusion

Correct: text excluded around glyph bounding box

2.7. Positioning and Kerning Initial Letters

In the block axis, the initial letter is positioned to satisfy its alignment requirements. (See initial-letter-align.)

In the inline axis, the position of the inline letter is given by aligning its start margin edge to the start edge of the containing block.

However, if the initial letter is a non-atomic inline with zero padding and borders, the UA must apply an additional negative offset on the start side of the amount necessary to optically align the first glyph to the containing block edge as it would be in normal text.

2.8. Initial Letter Wrapping: the initial-letter-wrap property

Note: initial-letter-wrap is at risk.

Name: initial-letter-wrap
Value: none | first | all | grid | <length> | <percentage>
Initial: none
Applies to: ::first-letter pseudo-elements and inline-level first child of a block container
Inherited: yes
Percentages: relative to logical width of (last fragment of) initial letter
Media: visual
Computed value: as specified
Animatable: no

This property specifies whether lines impacted by an initial letter are shortened to fit the rectangular shape of the initial letter box or follow the contour of its end-edge glyph outline.

none
No contour-fitting is performed: each impacted line is aligned flush to the end margin edge of the initial letter.
first
Behaves as none if the first typographic character unit after the initial letter belongs to Unicode General Category Zs. Otherwise behaves as for all on the first line of the block containing the initial letter and as none on the rest.
This example shows why the contour-fitting the first line is necessary, and why it is dropped when the initial letter is followed by a space:
optical kerning in the presence or absence of a space after the initial letter

In the top paragraph, the initial letter "A" has a word space after it: the gap between the top of the "A" and the next letter provides the necessary word separation. In the next paragraph, the initial letter "A" is part of the first word, and leaving a gap between the top of the "A" and the next letter would create a jarring visual break within the word. In this case, the first line of text should be kerned into the initial letter’s area, as shown in the bottom paragraph.

Do we need an unconditional first? (I.e. Should we rename this value to auto and add a first value that does not check for spaces?)

all
For each line of text impacted by the initial letter, the line box adjacent to the intial letter starts at the start-most point that touches the ink of the initial letter, plus the amount of the initial letter’s end-side border+padding+margin.

Note: This value is at-risk.

grid
This value is the same as none, except that the exclusion area of the impacted lines is increased as necessary for its end-edge to land on the character grid. The justify-self property can then be used to align the initial letter box within the exclusion area.

The heuristic for matching the character grid is 1em × n + letter-spacing × (n - 1), where n is the size of the initial letter as specified by the initial-letter property, and 1em represents the typical character advance width for ideographic characters (and may be replaced by a more accurate value if known).

Diagram of Japanese initial letter in vertical writing mode

Diagram of Japanese initial letter in vertical writing mode

Note: In this example, the exclusion area for the drop initial is larger than its glyph in order to preserve inline-axis alignment.

Note: This value is also at-risk.

<length>
<percentage>
This value behaves the same as first except that the adjustment to the first line is given explicitly instead of being inferred from the glyph shape.

This really needs font-relative lengths to be relative to the used size.

Note: This value exists because it is easier to implement. Authors are encouraged to use the first value and to set margins to control spacing, and to use this as a fallback for glyph detection if necessary.

In the following example, UAs that support first will use the glyph outline plus the specified margin in order to place the first line, whereas UAs that only support <length> or <percentage> values will pull in the first line by 40% of the initial letter’s width (and then add the margin to that point).
h1 + p:first-letter {
  initial-letter: 3; /* 3-line drop-cap */
  initial-letter-wrap: first;
  margin-right: 0.1em;
}
@supports (not (initial-letter-wrap: first)) {
  /* Classes auto-generated on paragraphs to match first letter. */
  p.A:first-letter {
    initial-letter-wrap: -40%; /* Start of glyph outline, assuming correct font. */
  }
}

These values and related annoyance is likely unnecessary if someone submits a patch to Blink to support first.

Edit figure to show how auto behaves in varying contexts

p::first-letter {
  initial-letter: 3;
  initial-letter-wrap: none;
}

regular dropcap A

Ordinary initial letter with no wrapping.

p::first-letter {
  initial-letter: 3;
  initial-letter-wrap: all;
}

text wrapping around dropcap A

Text follows shape of initial letter. Each line box should just touch the ink of the letter, with some offset (represented by the shaded box).

p::first-letter {
  initial-letter: 3;
  initial-letter-wrap: first;
}

text wrapping around dropcap A but only on first line

Only the first line is moved up against the ink of the initial letter.

text wrapping around dropcap V

text wrapping around dropcap P

text wrapping around dropcap W

2.9. Indentation and Multi-line Effects

text-indent and hanging-punctuation apply to the first line of text as normal in the presence of initial letters. Lines affected by the exclusion are shortened, as in the presence of floats, and are affected the same way.

If an initial letter is too long to fit on one line, it wraps (according to the usual text-wrapping rules), each line filled and formatted exactly as if it were the first line and the initial letter too long to fit any subsequent normal text. Any normal text after the initial letter starts on its last line, affected exactly as if that line were the first line.

multi-line drop cap

Drop cap extends to two lines.

2.10. Clearing Initial Letters

2.10.1. Raised and sunken caps

An initial letter does not affect the position of its containing element. For “raised caps” or “sunken caps,” the effect is created as if the text around the initial letter was pushed down, rather than the letter extending up into previous elements.

raised cap para after normal para

Raised cap (initial-letter: 3 1) on right; note that the position of the “C” is the same in both cases, but on the right all text is moved down relative to the initial letter.

Handle glyph ink above cap height of font.

2.10.2. Short paragraphs with initial letters

A paragraph with an initial letter can have fewer lines of text than the initial letter occupies. In this case, the initial letter’s top alignment is still honored, and its exclusion area continues into any subsequent blocks. This forces the subsequent inline-level content to wrap around the initial letter—exactly as if that block’s text were part of its own containing block. (This is similar to how floats exclude content in subsequent block boxes.)

short para with initial letter

The red text is a short paragraph with an initial letter. Note the subsequent paragraph wraps around the initial letter just as text in the paragraph with the initial letter does.

If the subsequent block starts with an initial letter, establishes a new formatting context, or specifies clear in the initial letter’s containing block’s start direction, then it must clear the previous block’s initial letter.

short para with initial letter followed by para with initial

The red text is a short paragraph with an initial letter. The subsequent paragraph clears because it also has an initial letter.

2.10.3. Interaction with floats

Floats always clear an initial letter when floated to the same side. When floated to the opposite side, they are pushed down to clear the initial letter only if they have specified clear to this side or they do not fit without overlapping the initial letter.

Is this the behavior we want? What if the float is on the same line as the initial letter?

Appendix A: Synthesizing Baselines

A.1: Synthesizing Baselines for Text

Some fonts may not contain the baseline information necessary to align properly as described above. User agents may follow these steps in the absence of a required metric:

  1. Measure the font.
    Describe in more detail. Should we document which characters in which scripts are useful, such as lowercase "o" to measure x-height? See https://drafts.csswg.org/css-values/#ex
  2. Use a heuristic for the script.
  3. Use fallback values:
    1. x-height: .5em;
    2. cap-height: .66em;
    3. hanging baseline: .6em;

A.2: Synthesizing Baselines for Replaced Content

Copy over text from CSS Writing Modes and expand for additional baseline values.

Note: Authors can use margins (positive or negative) to adjust the alignment of replaced content within a line.

In this example, the author is using a set of images to display characters that don’t exist.
img[src^="/text/"] {
  height: 1em; /* Size to match adjacent text */
  margin-bottom: -0.2em; /* Baseline at 20% above bottom */
}
...
<p>This is some text with words written in an unencoded script:
  <img src="/text/ch3439.png" alt="...">
  <img src="/text/ch3440.png" alt="...">
  <img src="/text/ch3442.png" alt="...">

Note: A future level of CSS may include a way of specifying a full baseline table for replaced elements. (This will probably look like a baseline-table property that accepts ''[<baseline-keyword> <percentage>]+''.)

Acknowledgments

Special thanks goes to the initial authors, Eric A. Meyer and Michel Suignard.

In additions to the authors, this specification would not have been possible without the help from:

David Baron, John Daggett, Stephen Deach, Sujal Parikh, Grzegorz Zygmunt, Chris Wilson, David M Brown, Bobby Tung, Shinyu Murakami, David Hyatt, Sylvain Galineau, Alan Stearns, Ted O’Connor, Florian Rivoal.

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.

Index

Terms defined by this specification

Terms defined by reference

References

Normative References

[CSS21]
Bert Bos; et al. Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. 7 June 2011. REC. URL: http://www.w3.org/TR/CSS2
[CSS-ALIGN-3]
Elika Etemad; Tab Atkins Jr.. CSS Box Alignment Module Level 3. 18 December 2014. WD. URL: http://www.w3.org/TR/css-align-3/
[CSS-COLOR-3]
CSS Color Module Level 3 URL: http://www.w3.org/TR/css3-color/
[CSS-COLOR-4]
CSS Color Module Level 4 URL: https://drafts.csswg.org/css-color-4/
[CSS-FONTS-3]
John Daggett. CSS Fonts Module Level 3. 3 October 2013. CR. URL: http://www.w3.org/TR/css-fonts-3/
[CSS-RUBY-1]
Elika Etemad; Koji Ishii. CSS Ruby Layout Module Level 1. 5 August 2014. WD. URL: http://www.w3.org/TR/css-ruby-1/
[CSS-TEXT-3]
Elika Etemad; Koji Ishii. CSS Text Module Level 3. 10 October 2013. LCWD. URL: http://www.w3.org/TR/css-text-3/
[CSS-VALUES]
Tab Atkins Jr.; Elika Etemad. CSS Values and Units Module Level 3. 11 June 2015. CR. URL: http://www.w3.org/TR/css-values/
[CSS-WRITING-MODES-3]
Elika Etemad; Koji Ishii. CSS Writing Modes Level 3. 20 March 2014. CR. URL: http://www.w3.org/TR/css-writing-modes-3/
[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
[SELECTORS-4]
Selectors Level 4 URL: http://www.w3.org/TR/selectors4/

Informative References

[CSS2]
Bert Bos; et al. Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. 7 June 2011. REC. URL: http://www.w3.org/TR/CSS2
[CSS3-LINE-GRID]
Elika Etemad; Koji Ishii; Alan Stearns. CSS Line Grid Module Level 1. 16 September 2014. WD. URL: http://www.w3.org/TR/css-line-grid-1/
[CSS3-TEXT-DECOR]
Elika Etemad; Koji Ishii. CSS Text Decoration Module Level 3. 1 August 2013. CR. URL: http://www.w3.org/TR/css-text-decor-3/
[CSS3BG]
Bert Bos; Elika Etemad; Brad Kemper. CSS Backgrounds and Borders Module Level 3. 9 September 2014. CR. URL: http://www.w3.org/TR/css3-background/
[CSS3COLOR]
Tantek Çelik; Chris Lilley; David Baron. CSS Color Module Level 3. 7 June 2011. REC. URL: http://www.w3.org/TR/css3-color
[CSS3TEXT]
Elika Etemad; Koji Ishii. CSS Text Module Level 3. 10 October 2013. LCWD. URL: http://www.w3.org/TR/css-text-3/
[SELECT]
Tantek Çelik; et al. Selectors Level 3. 29 September 2011. REC. URL: http://www.w3.org/TR/css3-selectors/
[CSS3-FONTS]
John Daggett. CSS Fonts Module Level 3. 3 October 2013. CR. URL: http://www.w3.org/TR/css-fonts-3/
[CSS3-WRITING-MODES]
Elika Etemad; Koji Ishii. CSS Writing Modes Level 3. 20 March 2014. CR. URL: http://www.w3.org/TR/css-writing-modes-3/

Property Index

Name Value Initial Applies to Inh. %ages Media Animatable Computed value
dominant-baseline auto | text-bottom | alphabetic | central | mathematical | hanging | text-top normal block containers and inline boxes yes N/A visual no as specified
vertical-align <‘baseline-shift’> || <‘alignment-baseline’> baseline inline-level boxes no N/A visual no as specified
alignment-baseline baseline | text-bottom | alphabetic | middle | central | mathematical | text-top | bottom | center | top baseline inline-level boxes no N/A visual no as specified
baseline-shift <length> | <percentage> | sub | super 0 inline-level boxes no refer to the used value of line-height visual no absolute length, percentage, or keyword specified
initial-letter normal | [<number> <integer>?] normal ::first-letter pseudo-elements and inline-level first child of a block container no N/A visual no as specified
initial-letter-align border-box? [ alphabetic | ideographic | hebrew | hanging ] | border-box alphabetic ::first-letter pseudo elements and inline level first child of a block container yes N/A visual no specified value
initial-letter-wrap none | first | all | grid | <length> | <percentage> none ::first-letter pseudo-elements and inline-level first child of a block container yes relative to logical width of (last fragment of) initial letter visual no as specified

Issues Index

This section is being rewritten. Refer to section 10.8 of [CSS21] for the normative CSS definition or the 2002 Working Draft if you want pretty pictures. (But ignore the old text, half of it’s wrong. We’re not specifying which half, that’s to be determined.) The CSS2 specification should be used as the guideline for implementation.
The CSSWG would like to know which baseline values are necessary: if any can be dropped, or any need to be added.
Should be text-over and text-under instead of text-top and text-bottom, but maybe it’s better not to use those terms for consistency with legacy vertical-align.
The editors would appreciate any examples of drop initials in non-western scripts, especially Arabic and Indic scripts.
Should this be initial-letters (plural) as originally discussed? Since it can apply to multiple letters.
Define interaction with ruby. Easiest is to make it not apply to/within ruby.
Add width/height as requested by Tantek... need to integrate with model.
Is there proper a typographic term for the hebrew “hanging” baseline?
What is the proper alignment for South Asian scripts that do not have the explicit hanging baseline, such as Tamil or Telugu?
We don’t have a way to do subtag selection with attr selectors. (It’s a feature of :lang() in Selectors 4, but we don’t want to use that because we want to hit the language root, not all of the descendant elements.) These selectors should also include the relevant script subtags.
Are there other things we need to consider here?
Do we need an unconditional first? (I.e. Should we rename this value to auto and add a first value that does not check for spaces?)
This really needs font-relative lengths to be relative to the used size.
These values and related annoyance is likely unnecessary if someone submits a patch to Blink to support first.
Edit figure to show how auto behaves in varying contexts
Handle glyph ink above cap height of font.
Is this the behavior we want? What if the float is on the same line as the initial letter?
Describe in more detail. Should we document which characters in which scripts are useful, such as lowercase "o" to measure x-height? See https://drafts.csswg.org/css-values/#ex
Copy over text from CSS Writing Modes and expand for additional baseline values.