CSS Intrinsic & Extrinsic Sizing Module Level 3

W3C Working Draft,

This version:
https://www.w3.org/TR/2018/WD-css-sizing-3-20180304/
Latest published version:
https://www.w3.org/TR/css-sizing-3/
Editor's Draft:
https://drafts.csswg.org/css-sizing-3/
Previous Versions:
Issue Tracking:
Inline In Spec
GitHub Issues
Editors:
Tab Atkins (Google)
Elika J. Etemad / fantasai (Invited Expert)

Abstract

This module extends the CSS sizing properties with keywords that represent content-based "intrinsic" sizes and context-based "extrinsic" sizes, allowing CSS to more easily describe boxes that fit their content or fit into a particular layout context.

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

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.

GitHub Issues are preferred for discussion of this specification. When filing an issue, please put the text “css-sizing” in the title, preferably like this: “[css-sizing] …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 (part of the Style Activity).

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 section is not normative.

CSS layout has several different concepts of automatic sizing that are used in various layout calculations. This section defines some more precise terminology to help connect the layout behaviors of this spec to the calculations used in other modules, and some new keywords for the width and height properties to allow authors to assign elements the dimensions resulting from these size calculations.

This spec needs illustrations! See issue.

1.1. Module interactions

This module extends the width, height, min-width, min-height, max-width, max-height, and column-width features defined in [CSS2] chapter 10 and in [CSS3COL]

1.2. Values

This specification follows the CSS property definition conventions from [CSS2]. Value types not defined in this specification are defined in CSS Values & Units [CSS-VALUES-3]. Other CSS modules may expand the definitions of these value types.

In addition to the property-specific values listed in their definitions, all properties defined in this specification also accept the CSS-wide keywords keywords as their property value. For readability they have not been repeated explicitly.

2. Terminology

size
A one- or two-dimensional measurement: a block size and/or inline size; alternatively a width and/or height.
inner size
The content-box size of a box.
outer size
The margin-box size of a box.
definite size
A size that can be determined without performing layout; that is, a <length>, a measure of text (without consideration of line-wrapping), a size of the initial containing block, or a <percentage> or other formula (such the “stretch-fit” sizing of non-replaced blocks [CSS2]) that is resolved solely against definite sizes.

Additionally, the size of the containing block of an absolutely positioned element is always definite with respect to that element.

indefinite size
A size that is not definite. Indefinite available space is essentially infinite.
available space
A size representing the space into which a box is laid out, as determined by the rules of the formatting context in which it participates. The space available to a box is usually either a measurement of its containing block (if that is definite) or an infinite size (when it is indefinite). Available space can alternatively be either a min-content constraint or a max-content constraint.
stretch fit
The stretch fit into a given size is that size, minus the element’s computed margins (not collapsed, treating auto as zero), border, and padding in the given dimension (such that the outer size is a perfect fit), and flooring at zero (so that the inner size is not negative).

Note: This is the formula used to calculate the auto widths of non-replaced blocks in normal flow in CSS2.1§10.3.3.

fallback size
Some sizing algorithms do not work well with an infinite size. In these cases, the fallback size is used instead. Unless otherwise specified, this is the size of the initial containing block.

2.1. Auto Box Sizes

There are four types of automatically-determined sizes in CSS (sizes resulting from auto sizing rules, depending on context):

stretch-fit size
stretch-fit inline size
stretch-fit block size

The size a box would take if its outer size filled the available space in the given axis; in other words, the stretch fit into the available space, if that is definite. Undefined if the available space is indefinite.

Note: For the inline axis, this is called the “available width” in CSS2.1§10.3.5 and computed by the rules in CSS2.1§10.3.3.

Note: Calculations involving this size need to specify a fallback behavior for when the available space is indefinite if that happens to be possible.

max-content size

A box’s “ideal” size in a given axis when given infinite available space. Usually this is the smallest size the box could take in that axis while still fitting around its contents, i.e. minimizing unfilled space while avoiding overflow.

max-content inline size

The box’s “ideal” size in the inline axis. Usually the narrowest inline size it could take while fitting around its contents if none of the soft wrap opportunities within the box were taken. (See §4 Intrinsic Size Determination.)

Note: This is called the “preferred width” in CSS2.1§10.3.5 and the “maximum cell width” in CSS2.1§17.5.2.2.

max-content block size

The box’s “ideal” size in the block axis. Usually the block size of the content after layout.

min-content size

The smallest size a box could take that doesn’t lead to overflow that could be avoided by choosing a larger size. (See §4 Intrinsic Size Determination.)

min-content inline size

The narrowest inline size a box could take that doesn’t lead to inline-dimension overflow that could be avoided by choosing a larger inline size. Roughly, the inline size that would fit around its contents if all soft wrap opportunities within the box were taken.

Note: This is called the “preferred minimum width” in CSS2.1§10.3.5 and the “minimum content width” in CSS2.1§17.5.2.2.

min-content block size

Equivalent to the max-content block size.

Or should this be the minimum between allowed break points? It might make sense in multi-col contexts to have min-content and max-content block-sizes be different, even if they are the same elsewhere.

fit-content size
fit-content inline size
fit-content block size

If the available space in a given axis is definite, equal to min(max-content size, max(min-content size, stretch-fit size)). Otherwise, equal to the max-content size in that axis.

Note: This is called the “shrink-to-fit” width in CSS2.1§10.3.5 and CSS Multi-column Layout § 3.4.

2.2. Intrinsic Size Contributions

max-content contribution
The size that a box contributes to its containing block’s max-content size.
min-content contribution
The size that a box contributes to its containing block’s min-content size.

Intrinsic size contributions are based on the outer size of the box; for this purpose auto margins are treated as zero.

2.3. Intrinsic Size Constraints

max-content constraint
A sizing constraint imposed by the box’s containing block that causes it to produce its max-content contribution.
min-content constraint
A sizing constraint imposed by the box’s containing block that causes it to produce its min-content contribution.

3. Specifying Box Sizes

3.1. Sizing Properties

This section defines the sizing properties width, height, min-width, min-height, max-width, and max-height. Their potential values are defined in the next section, §3.2 Sizing Values: the <length-percentage>, auto | none, min-content, max-content, and fit-content() values.

Note: Additional flow-relative aliases to these properties are defined in [CSS-LOGICAL-1].

3.1.1. Preferred Size Properties: the width and height properties

Name: width, height
Value: auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)
Initial: auto
Applies to: all elements except non-replaced inlines
Inherited: no
Percentages: relative to width/height of containing block
Media: visual
Computed value: as specified, with lengths made absolute
Canonical order: per grammar
Animatable: As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable

The width and height properties specify the preferred (physical) width and height of the box, respectively.

3.1.2. Minimum Size Properties: the min-width and min-height properties

Name: min-width, min-height
Value: auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)
Initial: auto
Applies to: all elements that accept width or height
Inherited: no
Percentages: relative to width/height of containing block
Media: visual
Computed value: as specified, with lengths made absolute
Canonical order: per grammar
Animatable: As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable

The min-width and min-height properties specify the minimum width (or “min width”) and minimum height (or “min height”) of the box, respectively.

Note: The initial value of auto is new; in [CSS2] the initial value was zero.

3.1.3. Maximum Size Properties: the max-width and max-height properties

Name: max-width, max-height
Value: none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)
Initial: none
Applies to: all elements that accept width or height
Inherited: no
Percentages: relative to width/height of containing block
Media: visual
Computed value: as specified, with lengths made absolute
Canonical order: per grammar
Animatable: As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable

The max-width and max-height properties specify the maximum width (or “max width”) and maximum height (or “max height”) of the box, respectively.

3.2. Sizing Values: the <length-percentage>, auto | none, min-content, max-content, and fit-content() values

<length-percentage>
Specifies the size of the box using <length> and/or <percentage>. The box-sizing property indicates whether the content box or border box is measured.

Percentages are resolved against the width/height, as appropriate, of the box’s containing block. If, in a particular axis, the containing block’s size depends on the box’s size, see the relevant layout module for special rules on how to resolve percentages.

Negative values are invalid.

auto
For width/height, specifies an automatic size. See the relevant layout module for how to calculate this.

For min-width/min-height, specifies an automatic minimum size. Unless otherwise defined by the relevant layout module, however, it resolves to a used value of 0.

For backwards-compatibility, the resolved value of this keyword is zero for boxes of all [CSS2] display types: block and inline boxes, inline blocks, and all the table layout boxes.

none
No limit on the size of the box.
min-content
If specified for the inline axis, use the min-content inline size; otherwise compute to the property’s initial value.
max-content
If specified for the inline axis, use the max-content inline size; otherwise compute to the property’s initial value.
fit-content(<length-percentage>)
If specified for the inline axis, use the fit-content formula with the available space replaced by the specified argument, i.e. min(max-content, max(min-content, <length-percentage>)); otherwise compute to the property’s initial value.

Negative values are invalid.

In all cases, the used value is floored to preserve a non-negative inner size.

Note: The min-content, max-content, and fit-content() values are new in Level 3.

Note: The flex-basis property hereby also gains these new keywords, as its values are defined by reference to <width>.

Note: This section previously defined stretch and fit-content as keywords representing the stretch-fit size and fit-content size, respectively. These keywords have been deferred to Level 4 (along with an additional contain keyword that behaves similarly to stretch but preserves the intrinsic aspect ratio, if any) to better work out the implications in situations with indefinite available space.

3.2.1. “Behaving as auto

To have a common term for both when width/height computes to auto and when it is defined to behave as if auto were specified (as in the case of block percentage heights resolving against an indefinite size, see CSS2§10.5), the property is said to behave as auto in both of these cases.

Note: Legacy spec prose defining layout behavior might explicitly refer to width/height having a computed value of auto as a condition; these should be interpreted as meaning behaves as auto, and reported to the CSSWG for updating.

Replace this section with references to the new term automatic size.

3.2.2. Containing or Excluding Floats

This section is non-normative.

Although block box boundaries are typically pervious to floats, sometimes an author needs them to contain their own (descendant) floats or to exclude floats from outside. For Block layout, specifying display: flow-root will make the box a formatting context root, which has this behavior.

Note: Boxes participating in Flex, Grid, or Table layout will automatically have this behavior.

3.3. Inner vs Outer Sizes: the box-sizing property

Name: box-sizing
Value: content-box | border-box
Initial: content-box
Applies to: all elements that accept width or height
Inherited: no
Percentages: N/A
Media: visual
Computed value: as specified
Canonical order: per grammar
Animation type: discrete

The box-sizing property switches the box model between assigning fixed sizes such as <length>s and <percentage>s to the content box and the border box. It affects the interpretation of all sizing properties, including flex-basis.

Values have the following meanings:

content-box
Sizes specified on sizing properties as <length-percentage> represent inner sizes: they are applied to the content box. The padding and border of the box are laid out and drawn outside the specified width and height.

Note: This is the behavior of width and height as specified by CSS2.1, and is thus the default.

border-box
Sizes specified on sizing properties as <length-percentage> represent outer sizes: they are applied to the border box. The padding and border of the box are laid out and drawn inside the specified width and height, with the content box sized to fill the remaining space, floored at zero.

The content width and height are calculated by subtracting the border and padding widths of the respective sides from the specified <length-percentage>. As the content width and height cannot be negative, this computation is floored at zero.

Used values, as exposed for instance through getComputedStyle(), also refer to the border box.

Values affected by box-sizing include both raw <length-percentage> values and those used in functional notations such as fit-content(). In contrast, non-quantitative values such as auto and min-content are not influenced by the box-sizing property (unless otherwise specified).

For example, the following properties set the inner size of the box to 100px, and the outer size to 120px:
.box {
  box-sizing:   content-box; /* default */
  width:        100px;
  padding-left: 10px;
  border-left:  10px solid;
}

On the other hand, by changing to border-box, the inner size is now 80px, while the outer size is 100px:

.box {
  box-sizing:   border-box;
  width:        100px;
  padding-left: 10px;
  border-left:  10px solid;
}

The inner size can’t be less than zero, so if the padding + border is greater than the specified outer size, the box will end up larger than specified. In this case, the inner size will be 0px while the outer size is 120px, even though width: 100px is specified:

.box {
  box-sizing:   border-box;
  width:        100px;
  padding-left: 60px;
  border-left:  60px solid;
  /* padding + border = 120px */
}

Note: Certain HTML elements, such as button, default to border-box behavior. See HTML for details on which elements have this behavior.

In the CSS specifications, the terms width, height, minimum (min) width, minimum (min) height, maximum (max) width, and maximum (max) height refer to the inner size (content-box size) of a box unless otherwise indicated.

3.4. New Column Sizing Values: the min-content, max-content, and fit-content() values

Name: column-width
New values: min-content | max-content | fit-content(<length-percentage>)

When used as values for column-width, the new keywords specify the optimal column width:

min-content
Specifies the optimal column width as the min-content inline size of the multi-column element’s contents.
max-content
Specifies the optimal column width as the max-content inline size of the multi-column element’s contents.
fit-content(<length-percentage>)
Specifies the optimal column width as min(max-content size, max(min-content size, <length-percentage>))

Note: The column width never varies by column. When the column width is informed by the multi-column element’s contents (as in the keywords above), all of its contents are taken under consideration and the calculated width is shared by all the columns.

4. Intrinsic Size Determination

Intrinsic sizing determines sizes based on the contents of an element, without regard for its context.

4.1. Intrinsic Sizes

The min-content size of a box in each axis is the size it would have if it was a float given an auto size in that axis (and no minimum or maximum size in that axis) and if its containing block was zero-sized in that axis. (In other words, the minimum size it has when sized as “shrink-to-fit”.)

The max-content size of a box in each axis is the size it would have if it was a float given an auto size in that axis (and no minimum or maximum size in that axis), and if its containing block was infinitely-sized in that axis. (In other words, the maximum size it has when sized as “shrink-to-fit”.)

Note: Note that when the box has an intrinsic aspect ratio, size constraints in the opposite dimension will transfer through and can affect the auto size in the considered one. See CSS2§10.

For replaced elements, if the max-content size size would depend on the size of the containing block (as it does for images with an intrinsic aspect ratio but no intrinsic size, see CSS2§10.3.2) and therefore can’t be calculated against an infinitely-sized containing block then:

For boxes with an intrinsic aspect ratio, but no intrinsic size:
  • If the available space is definite in the inline axis, use the stretch fit into that size for the inline size and calculate the block size using the aspect ratio.

  • Otherwise if the box has a definite non-zero min-width or min-height, use that size and calculate the other dimension using the aspect ratio; if both dimensions have a definite minimum, choose the one that results in the larger overall size.

    Note: This case was previous calculated from a 300x150 default size, rather than the box’s min size. This is believed to be a better behavior, and likely to be web compatible, but please send feedback to the CSSWG if there are any problems.

  • Otherwise use a width of 300px (height of 150px in vertical writing modes) and calculate the other dimension using the aspect ratio.

For boxes without an intrinsic aspect ratio:
  • If the available space is definite in the appropriate dimension, use the stretch fit into that size in that dimension.

  • Otherwise, if the box has a definite non-zero minimum size (min-width/min-height) in that dimension, use that size.

  • Otherwise, use 300px for the width and/or 150px for the height as needed.

Since a block-level or inline-level replaced element whose height or width behaves as auto is effectively defined to use its max-content size (CSS2§10.3.2), this specification applies the rules above to the undefined case of a replaced element whose height and width both behave as auto.

Note: This specification does not define how to determine the size of a float. Please refer to [CSS2], the relevant CSS specification for that display type, and/or existing implementations for further details. A future specification will define this in detail, replacing the CSS2 “definition”, such as it is.


Although the auto size of text input controls such as HTML’s <input type=text> and <textarea> elements is typically a fixed size, the contents of such elements can be used to determine a content-based intrinsic size, as for non-replaced block containers. The min-content and max-content keywords of the sizing properties thus represent content-based sizes for form controls which render their value as text contained within their box, allowing such controls to size to fit their visible contents similarly to regular non-replaced elements.

The content in this case is defined to be the input control’s values (the raw value in the case of textarea, or the value in the case of input), possibly transformed to a more human-readable and/or localized display format, which is then treated as child text runs of the input control, allowing soft wrap opportunities only where the input control would actually allow wrapping (whether keyed off of CSS properties or other, UA-internal constraints). If the input control has designated placeholder text to be overlaid in its value display area, then that text is also measured for the purpose of calculating the content-based size—whether or not the placeholder text is visible at the moment. (Thus the content-based intrinsic size of the input control is the larger of the size to fit the placeholder text and the size to fit the value.)

The UA may enforce a minimum (such as the size required to contain a single zero-width character, or the smallest usable size of a touch target) on the form control’s min-content and max-content sizes to ensure sufficient space for the caret and otherwise maintain usability of the form control.

Note: This might be extended to iframe or other content-containing replaced elements (see discussion), but text inputs are a major use-case; and being document-internal, have the least additional complications.

4.2. Intrinsic Contributions

A box’s min-content contribution/max-content contribution in each axis is the size of the content box of a hypothetical auto-sized float that contains only that box, if that hypothetical float’s containing block is zero-sized/infinitely-sized.

However, in the case of a replaced box with a percentage-based width/max-width/height/max-height, the percentage is resolved to zero when calculating the min-content contribution in the corresponding axis. (See Compressible Replaced Elements for a list of which elements in HTML this applies to.) The UA may additionally floor this size based on UI considerations, such as ensuring certain UI elements remain visible (for example, the dropdown arrow on a select).

For example, an input assigned width: calc(50% + 50px) has a min-content contribution of 50px, plus any horizontal margin/border/padding.

Note: We are not 100% sure if zeroing out a percentage max-width on form controls is web-compatible. See Issue 765.

Note: This specification does not define how to determine these sizes. Please refer to [CSS2], the relevant CSS specification for that display type, and/or existing implementations for further details.

5. Extrinsic Size Determination

Extrinsic sizing determines sizes based on the context of an element, without regard for its contents.

5.1. Percentage Sizing

Percentages specify sizing of a box with respect to the box’s containing block.

For example, in the following markup:
<article style="height: 60em">
  <aside style="height: 50%;">
  </aside>
</article>

the <aside> would be 30em tall.

Sometimes the size of a percentage-sized box’s containing block depends on the intrinsic size contribution of the box itself, creating a cyclic dependency. When calculating the containing block’s size, the percentage behaves as auto. Then, unless otherwise specified, when calculating the used sizes and positions of the containing block’s contents:

Note: These rules specify the previously-undefined behavior of this cyclic case in CSS2§10.2. Note also, the behavior in CSS2§10.5 is superseded in their respective specifications for layout modes (such as flex layout) not described in CSS2.

Similarly, percentage margins and padding behave as zero in such cyclic cases when calculating the containing block’s size, and then resolve when calculating the used sizes and positions of its content. (This defines the previously-undefined behavior of this cyclic case in CSS2§8.3 and CSS2§8.4.

For example, in the following markup:
<article style="width: min-content">
  <aside style="width: 50%;">
  LOOOOOOOOOOOOOOOOOOOONG
  </aside>
</article>

When calculating the width of the outer <article>, the inner <aside> behaves as width: auto, so the <article> sets itself to the width of the long word. Since the <article>’s width didn’t depend on "real" layout, though, it’s treated as definite for resolving the <aside>, whose width resolves to half that of the <article>.

In this example,
<article style="height:auto">
  <aside style="height: 50%;">
    <div class=block style="height: 150px;"></div>
  </aside>
  <section style="height: 30px;"></section>
</article>

because the percentage block size (height, in this case) on block-level elements is defined to not resolve inside content-sized containing blocks, the percentage height on the <aside> is ignored, that is, it behaves exactly as if auto were specified.

Issue: Letting %s still resolve against a definite height when the min-height is intrinsic is an open issue. (CSS2 has a general statement about "height depending on contents", which this technically is, even though CSS2 didn’t have content-dependent keywords for min-height. Since this is new, we think we could have this different behavior.)

The following examples illustrate how block-axis percentages resolve against a containing block whose size depends on its contents.

<article style="height:100px; min-height: min-content;">
  <aside style="height: 50%;">
    <div style="height: 150px;"></div>
  </aside>
  <section style="height: 30px;"></section>
</article>

The initial height of the <article> is 100px, as specified, which would make the <aside> 50px tall when it resolved its percentage. However, we must calculate the min-height, by substituting it in for height. This causes the percentage on the <aside> to behave as auto, so the <aside> ends up 150px tall. The total height of the contents is thus 180px. This is larger than the specified 100px height, so the <article> gets adjusted to 180px tall.

Then, since the percentage could originally resolve against the (100px) height, it now resolves against the 180px height, so the <aside> ends up being 90px tall.

<article style="height:auto; min-height: min-content;">
  <aside style="height: 50%;">
    <div class=block style="height: 150px;"></div>
  </aside>
  <section style="height: 30px;"></section>
</article>

In this case, the percentage on the <aside> won’t normally resolve, because the containing block’s height is auto (and thus depends on the size of its contents). Instead it behaves as auto, resulting in a height of 150px for the <aside>, and an initial height of 180px for the <article> The min-height doesn’t change this; height: min-content; acts similarly to height: auto; and results in the same sizes.

<article style="height:100px; min-height: min-content;">
  <aside style="height: 200%;">
    <div style="height: 150px;"></div>
  </aside>
  <section style="height: 30px;"></section>
</article>

This is a variation on the first code block, and follows a similar path; the <aside> initially wants to compute to 200px tall (200% of the 100px containing block height). When we calculate the effects of min-height, the percentage behaves as auto, causing it to become 150px tall, and the total min-content height of the containing block to be 180px tall. Since this is larger than 100px, the <article> gets clamped to 180px, the percentage resolves against this new height, and the <aside> ends up being 360px tall, overflowing the <article>

Compressible Replaced Elements

The following elements can have their min-content size compressed when their width/height or max-width/max-height is expressed with a percentage size. See §4.2 Intrinsic Contributions.

Changes

Major changes since the 7 February 2017 Working Draft include:

Acknowledgments

Special thanks go to L. David Baron, Aaron Gustafson, Daniel Holbert, and Mats Palmgren for their contributions to this module.

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-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-DISPLAY-3]
Elika Etemad. CSS Display Module Level 3. 20 July 2017. WD. URL: https://www.w3.org/TR/css-display-3/
[CSS-FLEXBOX-1]
Tab Atkins Jr.; Elika Etemad; Rossen Atanassov. CSS Flexible Box Layout Module Level 1. 19 October 2017. CR. URL: https://www.w3.org/TR/css-flexbox-1/
[CSS-LOGICAL-1]
Rossen Atanassov; Elika Etemad. CSS Logical Properties and Values Level 1. 18 May 2017. WD. URL: https://www.w3.org/TR/css-logical-1/
[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-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/
[CSS2]
Bert Bos; et al. Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. 7 June 2011. REC. URL: https://www.w3.org/TR/CSS2/
[CSS3COL]
Håkon Wium Lie; Florian Rivoal; Rachel Andrew. CSS Multi-column Layout Module Level 1. 5 October 2017. WD. URL: https://www.w3.org/TR/css-multicol-1/
[CSSOM-1]
Simon Pieters; Glenn Adams. CSS Object Model (CSSOM). 17 March 2016. WD. URL: https://www.w3.org/TR/cssom-1/
[HTML]
Anne van Kesteren; et al. HTML Standard. Living Standard. URL: https://html.spec.whatwg.org/multipage/
[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

[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/
[CSS22]
Bert Bos. Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification. 12 April 2016. WD. URL: https://www.w3.org/TR/CSS22/

Property Index

Name Value Initial Applies to Inh. %ages Media Ani­mat­able Anim­ation type Canonical order Com­puted value
box-sizing content-box | border-box content-box all elements that accept width or height no N/A visual discrete per grammar as specified
height auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) auto all elements except non-replaced inlines no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute
max-height none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) none all elements that accept width or height no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute
max-width none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) none all elements that accept width or height no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute
min-height auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) auto all elements that accept width or height no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute
min-width auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) auto all elements that accept width or height no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute
width auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) auto all elements except non-replaced inlines no relative to width/height of containing block visual As <length-percentage>, or keyword, or as fit-content() with the <length-percentage> argument interpolable per grammar as specified, with lengths made absolute

Issues Index

This spec needs illustrations! See issue.
Or should this be the minimum between allowed break points? It might make sense in multi-col contexts to have min-content and max-content block-sizes be different, even if they are the same elsewhere.
Replace this section with references to the new term automatic size.