CSS Text Decoration Module Level 4

W3C First Public Working Draft,

This version:
https://www.w3.org/TR/2018/WD-css-text-decor-4-20180313/
Latest published version:
https://www.w3.org/TR/css-text-decor-4/
Editor's Draft:
https://drafts.csswg.org/css-text-decor-4/
Issue Tracking:
Tracker
Inline In Spec
GitHub Issues
Editors:
Elika J. Etemad / fantasai (Invited Expert)
(Google)

Abstract

This module contains the features of CSS relating to text decoration, such as underlines, text shadows, and emphasis marks.

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 https://www.w3.org/TR/.

This document is a First Public Working Draft.

Publication as a First Public 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.

GitHub Issues are preferred for discussion of this specification. When filing an issue, please put the text “css-text-decor” in the title, preferably like this: “[css-text-decor] …summary of comment…”. All issues and comments are archived, and there is also a historical archive.

This document was produced by the CSS Working Group.

This document was produced by a group operating under the 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 February 2018 W3C Process Document.

1. Introduction

This is the initial draft of CSS Text Decoration Level 4; it is being maintained as a diff spec against CSS Text Decoration Level 3.

2. Additional Controls for Line Decorations

2.1. Text Decoration Line Thickness: the text-decoration-width property

Name: text-decoration-width
Value: auto | <length>
Initial: auto
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual
Computed value: as specified
Canonical order: per grammar
Animatable: no

This property, which is also a sub-property of the text-decoration shorthand, sets the stroke thickness of underlines, overlines, and line-throughs.

Values have the following meanings:

auto
The UA chooses an appropriate thickness for text decoration lines; see below.
<length>
Specifies the thickness of text decoration lines as a length. The UA must floor the actual value at one device pixel. Authors are strongly encouraged to use em units so that the line thickness scales with the font.

2.1.1. Automatic Thickness of Text Decoration Lines

Insert L3 text here.

2.2. Determining the Position and Thickness of Line Decorations

This section is copied over from early drafts of Text Decoration Level 3. It is still under review, and needs integration with text-underline-offset and text-decoration-width.

Since line decorations can span elements with varying font sizes and vertical alignments, the best position for a line decoration is not necessarily the ideal position dictated by the decorating box. Instead, it’s calculated, per line, from all text decorated by the decorating box on that line, the considered text. However, descendants of the decorating box that are skipped due to text-decoration-skip, descendant inlines with text-decoration-skip: ink, and any descendants that do not participate in the decorating box’s inline formatting context are excluded from the set of considered text.

The line decoration positions are then calculated per line as follows (treating over-positioned underlines as over lines and under-positioned overlines as under lines):

over lines
Align the line decoration with respect to the highest over EM-box edge of the considered text.
alphabetic underlines

The alphabetic underline position is calculated by taking the ideal offset (from the alphabetic baseline) of each run of considered text, averaging those, and then using the lowest alphabetic baseline to actually position the line. (Alphabetic baselines can differ between baseline-aligned boxes if the dominant baseline is non-alphabetic.) To prevent superscripts and subscripts from throwing this position off-kilter, an inline with a non-initial computed vertical-align is treated as having the ideal underline position of its parent.

non-alphabetic under lines
Position the line decoration with respect to the lowest under EM-box edge of the considered text.
line-throughs
Line-throughs essentially use the same sort of averaging as for alphabetic underlines, but recompute the position when drawing across a descendant with a different computed font-size. (This ensures that the text remains effectively “crossed out” despite any font size changes.) For each run of considered text with the same font-size, compute an ideal position averaged from its font metrics. To prevent superscripts and subscripts from throwing this position off-kilter, an inline with a non-initial computed vertical-align is treated as having the ideal underline position of its parent. Position the portion of the line across each decorated fragment at that position.

For simplicity, line-throughs should draw over each element at that element’s preferred/averaged position. This can produce some undesirable jumpiness, but there doesn’t appear to be any way to avoid that which is correct in all instances, and all attempts are worryingly complex. What position should line-throughts adopt over elements that have a different font-size, but no considered text?

CSS does not define the thickness of line decorations. In determining the thickness of text decoration lines, user agents may consider the font sizes, faces, and weights of descendants to provide an appropriately averaged thickness.

The following figure shows the averaging for underline:

In the first rendering of the underlined text '1st a'
								 with 'st' as a superscript, both the '1st' and the 'a'
								 are rendered in a small font. In the second rendering,
								 the 'a' is rendered in a larger font. In the third, both
								 '1st' and 'a' are large.

In the three fragments of underlined text, the underline is drawn consecutively lower and thicker as the ratio of large text to small text increases.

Using the same example, a line-through would in the second fragment, instead of averaging the two font sizes, split the line-through into two segments:

In both cases, however, the superscript, due to the vertical-alignment shift, has no effect on the position of the line.

2.3. Text Underline Offset: the text-underline-offset property

Name: text-underline-offset
Value: auto | <length>
Initial: auto
Applies to: all elements
Inherited: yes
Percentages: N/A
Media: visual
Computed value: as specified
Canonical order: per grammar
Animatable: no

This property, which is not a sub-property of the text-decoration shorthand, sets the offset of underlines from their initial position.

Values have the following meanings:

auto
The UA chooses an appropriate offset for underlines.
<length>
Specifies the offset of underlines as a length. This replaces any information in the font or derived from glyph shapes / character ranges. Authors are strongly encouraged to use em units so that the offset scales with the font.

The initial position of the underline depends on the value of text-underline-position as detailed below.

Interaction of text-underline-position and text-underline-offset
text-underline-position Initial Position Positive Direction
auto alphabetic baseline over
under text-under edge over
over text-over edge under

When the value of the text-decoration-line property is either spelling-error or grammar-error, the UA may ignore the value of text-underline-position.

2.4. Text Decoration Line Continuity

2.4.1. Text Decoration Line Continuity: the text-decoration-skip property

Name: text-decoration-skip
Value: none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]
Initial: objects leading-spaces trailing-spaces
Applies to: all elements
Inherited: yes
Percentages: N/A
Media: visual
Computed value: as specified
Canonical order: per grammar
Animatable: no

The initial value is quite verbose, which makes it inconvenient to set the property to the initial value plus something else. We should make this easier to specify.

This property will be split into individual properties along the lines of text-decoration-skip-ink, to improve its cascading behavior. See discussion and resolution.

This property specifies what parts of the element’s content any text decoration affecting the element must skip over. It controls all text decoration lines drawn by the element and also any text decoration lines drawn by its ancestors. Values have the following meanings:

none
Skip nothing: text-decoration is drawn for all text content and across atomic inline-level boxes.
objects
Skip this element (its entire margin box) if it is an atomic inline (such as an image or inline-block).
spaces
Skip all spacing, i.e. all typographic character units with the Unicode White_Space property [UAX44], plus any adjacent letter-spacing or word-spacing.
edges
The UA should place the start and end of the line inwards slightly (e.g. by half a line thickness) from the content edge of the decorating box so that, e.g. two underlined elements side-by-side do not appear to have a single underline. (This is important in Chinese, where underlining is a form of punctuation.)

An underline below a series of Chinese characters has a gap between two adjacent underlining elements.

text-decoration-skip: edges for <u>石井</u><u>艾俐俐</u>

box-decoration
Skip over the box’s margin, border, and padding areas. Note that this only has an effect on decorations imposed by an ancestor; a decorating box never draws over its own box decoration.
leading-spaces
Skip all spacing, i.e. all typographic character units with the Unicode White_Space property [UAX44] and all word separators plus any adjacent letter-spacing or word-spacing, when located at the start of the line.
trailing-spaces
Skip all spacing, i.e. all typographic character units with the Unicode White_Space property [UAX44] and all word separators plus any adjacent letter-spacing or word-spacing, when located at the end of the line.

Note that this property inherits and that descendant elements can have a different setting.

The following addition is made to the default UA stylesheet for HTML:

ins, del { text-decoration-skip: none; }

When the value of the text-decoration-line property is either spelling-error or grammar-error, the UA may ignore the value of text-decoration-skip.

2.4.2. Text Decoration Line Continuity: the text-decoration-skip-ink property

Name: text-decoration-skip-ink
Value: auto | none
Initial: auto
Applies to: all elements
Inherited: yes
Percentages: N/A
Media: visual
Computed value: as specified
Canonical order: per grammar
Animatable: no

This property controls how overlines and underlines are drawn when they cross over a glyph.

When enabled, decoration lines skip over where glyphs are drawn: interrupt the decoration line to let the shape of the text show through where the text decoration would otherwise cross over a glyph. The UA must also skip a small distance to either side of the glyph outline.

An alphabetic underline through Myanmar text skips around descenders and the vertical strokes of combining characters that drop below the alphabetic baseline.

text-decoration-skip: ink

Ideographic scripts do not want to skip when auto. How can we define this behavior? Are there more scripts wanting not to skip? Need some normative text describe how auto works. See telcon minutes, alreq#86, csswg#1288

This property only applies to overlines and underlines; line-throughs are unaffected.

auto
UA should skip over where glyphs are drawn.
none
UA must draw contiguous lines without interruptions, even when they cross over a glyph.

3. Additional Controls for Text Shadows

Level 4 adds a spread radius argument to text-shadow, using the same syntax and interpretation as for box-shadow, except that corners are always rounded (since the geometry of a glyph is not so simple as a box).

4. Additional Controls for Emphasis Marks

See also issue about continuity in size/position.

4.1. Emphasis Mark Skip: the text-emphasis-skip property

This section is under brainstorming. It’s also not yet clear if this property is needed quite yet, despite differences in desired behavior among publications.

Name: text-emphasis-skip
Value: spaces || punctuation || symbols || narrow
Initial: spaces
Applies to: all elements
Inherited: yes
Percentages: N/A
Media: visual
Computed value: as specified

This property describes for which characters marks are drawn. The values have following meanings:

spaces
Skip Word separators or characters belonging to the Unicode separator category (Z*). (But note that emphasis marks are drawn for a space that combines with any combining characters.)
punctuation
Skip punctuation. Punctuation in this definition includes characters belonging to the Unicode Pc, Pd, Ps, Pe, Pi, or Pf categories. It also includes characters where the Unicode category is Po and the Sentence_Break property [UAX29] of the Unicode database [UAX44] is ATerm, Close, SContinue, or STerm.
symbols
Skip symbols. Symbols in this definition includes characters belonging to the Unicode S* category. It also includes the Unicode Po category that are not defined as punctuation above.
narrow
Skip characters where the East_Asian_Width property [UAX11] of the Unicode database [UAX44] is not F (Fullwidth) or W (Wide).

Characters belonging to the Unicode classes for control codes and unassigned characters (Cc, Cf, Cn) are skipped regardless of the value of this property.

This syntax requires UA to implement drawing marks for spaces. Is there any use case for doing so? If not, should we modify the syntax not to allow drawing marks for spaces?

See also discussion of the initial value.

5. Privacy and Security Considerations

This specification introduces no new privacy or security considerations.

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.

Requirements for Responsible Implementation of CSS

The following sections define several conformance requirements for implementing CSS responsibly, in a way that promotes interoperability in the present and future.

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 property 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.

Implementations of Unstable and Proprietary Features

To avoid clashes with future stable CSS features, the CSSWG recommends following best practices for the implementation of unstable features and proprietary extensions to CSS.

Implementations of CR-level Features

Once a specification reaches the Candidate Recommendation stage, implementers should release an unprefixed implementation of any CR-level feature they can demonstrate to be correctly implemented according to spec, and should avoid exposing a prefixed variant of that feature.

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 https://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

[CSS-BACKGROUNDS-3]
Bert Bos; Elika Etemad; Brad Kemper. CSS Backgrounds and Borders Module Level 3. 17 October 2017. CR. URL: https://www.w3.org/TR/css-backgrounds-3/
[CSS-CASCADE-4]
Elika Etemad; Tab Atkins Jr.. CSS Cascading and Inheritance Level 4. 14 January 2016. CR. URL: https://www.w3.org/TR/css-cascade-4/
[CSS-FONTS-3]
John Daggett. CSS Fonts Module Level 3. 3 October 2013. CR. URL: https://www.w3.org/TR/css-fonts-3/
[CSS-INLINE-3]
Dave Cramer; Elika Etemad; Steve Zilles. CSS Inline Layout Module Level 3. 24 May 2016. WD. URL: https://www.w3.org/TR/css-inline-3/
[CSS-TEXT-3]
Elika Etemad; Koji Ishii. CSS Text Module Level 3. 22 August 2017. WD. URL: https://www.w3.org/TR/css-text-3/
[CSS-TEXT-DECOR-3]
Elika Etemad; Koji Ishii. CSS Text Decoration Module Level 3. 1 August 2013. CR. URL: https://www.w3.org/TR/css-text-decor-3/
[CSS-VALUES-3]
Tab Atkins Jr.; Elika Etemad. CSS Values and Units Module Level 3. 29 September 2016. CR. URL: https://www.w3.org/TR/css-values-3/
[CSS-WRITING-MODES-3]
Elika Etemad; Koji Ishii. CSS Writing Modes Level 3. 7 December 2017. CR. URL: https://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
[UAX11]
Ken Lunde 小林劍. East Asian Width. 14 May 2017. Unicode Standard Annex #11. URL: https://www.unicode.org/reports/tr11/tr11-33.html
[UAX29]
Mark Davis; Laurențiu Iancu. Unicode Text Segmentation. 13 June 2017. Unicode Standard Annex #29. URL: https://www.unicode.org/reports/tr29/tr29-31.html
[UAX44]
Mark Davis; Ken Whistler. Unicode Character Database. 25 September 2013. URL: http://www.unicode.org/reports/tr44/

Property Index

Name Value Initial Applies to Inh. %ages Media Ani­mat­able Canonical order Com­puted value Computed value
text-decoration-skip none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ] objects leading-spaces trailing-spaces all elements yes N/A visual no per grammar as specified
text-decoration-skip-ink auto | none auto all elements yes N/A visual no per grammar as specified
text-decoration-width auto | <length> auto all elements no N/A visual no per grammar as specified
text-emphasis-skip spaces || punctuation || symbols || narrow spaces all elements yes N/A visual as specified
text-underline-offset auto | <length> auto all elements yes N/A visual no per grammar as specified

Issues Index

Insert L3 text here.
This section is copied over from early drafts of Text Decoration Level 3. It is still under review, and needs integration with text-underline-offset and text-decoration-width.
For simplicity, line-throughs should draw over each element at that element’s preferred/averaged position. This can produce some undesirable jumpiness, but there doesn’t appear to be any way to avoid that which is correct in all instances, and all attempts are worryingly complex. What position should line-throughts adopt over elements that have a different font-size, but no considered text?
Should this be removed?
The initial value is quite verbose, which makes it inconvenient to set the property to the initial value plus something else. We should make this easier to specify.
This property will be split into individual properties along the lines of text-decoration-skip-ink, to improve its cascading behavior. See discussion and resolution.
Ideographic scripts do not want to skip when auto. How can we define this behavior? Are there more scripts wanting not to skip? Need some normative text describe how auto works. See telcon minutes, alreq#86, csswg#1288
See also issue about continuity in size/position.
This section is under brainstorming. It’s also not yet clear if this property is needed quite yet, despite differences in desired behavior among publications.
This syntax requires UA to implement drawing marks for spaces. Is there any use case for doing so? If not, should we modify the syntax not to allow drawing marks for spaces?
See also discussion of the initial value.