W3C

CSS Fragmentation Module Level 3

W3C Working Draft 23 August 2012

This version:
http://www.w3.org/TR/2012/WD-css3-break-20120823/
Latest version:
http://www.w3.org/TR/css3-break/
Editor's Draft:
http://dev.w3.org/csswg/css3-break/
Previous version:
http://www.w3.org/TR/2012/WD-css3-break-20120228/
Editors:
Rossen Atanassov, Microsoft Corporation,
Elika J. Etemad, Mozilla Corporation
Issues List:
http://wiki.csswg.org/spec/css3-break
Discussion:
www-style@w3.org with subject line "[css3-break] …message topic…"

Abstract

This module describes the fragmentation model that partitions a flow into pages. It builds on the Page model module and introduces and defines the fragmentation model. It adds functionality for pagination, breaking variable fragment size and orientation, widows and orphans.

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 “css3-break” in the subject, preferably like this: “[css3-break] …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.

Changes since the previous draft are listed in the Changes section.

Table of contents

1. Introduction

This section is not normative.

In paged media (e.g., paper, transparencies, photo album pages, pages displayed on computer screens as printed output simulations), as opposed to continuous media, the content of the document is split into one or more discrete display surfaces. In order to avoid awkward breaks (such as halfway through a line of text), the layout engine must be able to shift around content that would fall across the page break. This process is called pagination.

In CSS, in addition to paged media, certain layout features such as regions [CSS3-REGIONS] and multi-column layout [CSS3COL] create a similarly fragmented environment. The generic term for breaking content across containers is fragmentation. This module explains how content breaks across fragmentainers such as pages and columns and how such breaks can be controlled by the author.

1.1. Module Interactions

This module replaces and extends the pagination controls defined in [CSS21] section 13.3 and in [CSS3PAGE].

1.2. Values

This specification follows the CSS property definition conventions from [CSS21]. Value types not defined in this specification are defined in CSS Level 2 Revision 1 [CSS21]. Other CSS modules may expand the definitions of these value types: for example [CSS3COLOR], when combined with this module, expands the definition of the <color> value type as used in this specification.

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

2. Fragmentation Model and Terminology

fragmented flow
A content flow that is being laid out in a fragmentation context, such as a multi-column element, a chain of CSS regions, or a paged media display. The fragmented flow consists of the content of a (possibly anonymous) box called the fragmenation root.
fragmentation container (fragmentainer)
A box—such as a page box, column box, or region—that contains a portion (or all) of a fragmented flow. Fragmentainers can be pre-defined, or generated as needed. When breakable content overflows a fragmentainer in the block dimension, instead of overflowing it breaks into the next container in its fragmentation context.
fragmentation context
An ordered series of fragmentainers. A given fragmentation context can only have one block flow direction across all its fragmentainers.
fragmentation direction
The block flow direction of the fragmentation context, i.e. the direction in which content is fragmented.
fragmentation
The process of splitting a content flow across the fragmentainers that form a fragmentation context.
box fragment or fragment
The portion of a box that belongs to exactly one fragmentainer. A box in continuous flow always consists of only one fragment. A box in a fragmented flow consists of one or more fragments.
remaining fragmentainer extent
The remaining extent on the fragmentainer available to a given element, i.e. between the end of preceding content on fragmentainer and the edge of the fragmentainer.

Each fragmentation break (hereafter, break) ends layout of the fragmented box in the current fragmentainer and causes the remaining content to be laid out in the next fragmentainer, in some cases causing a new fragmentainer to be generated to hold the deferred content. When multiple flows are laid out in parallel, fragmentation is performed independently in each flow.

Breaking a fragmentainer F effectively splits the fragmentainer into two fragmentainers (F1 and F2). The only difference is that the type of break between the two pieces F1 and F2 is the type of break created by the fragmentation context that split F, not the type of break normally created by F's own fragmentation context.

Breaking inline content into lines is another form of fragmentation, and similarly creates box fragments when it breaks inline boxes across line boxes. However, inline breaking is not covered here; see [CSS3TEXT] and the ‘box-decoration-break’ property in [CSS3BG].

3. Controlling Breaks

The following sections explain how breaks are controlled in a fragmented flow. Five properties indicate where the user agent may or should break the content flow. In the case of pagination, the author can also specify on which page (left or right) the subsequent content should resume.

3.1. Forced breaks and keep-together: the ‘break-before’, ‘break-after’, ‘break-inside’ properties

Name: break-before
Value: auto | avoid | always | page | left | right | recto | verso | column | region | avoid-page | avoid-column | avoid-region
Initial: auto
Applies to: block-level elements, table row groups, table rows (but see prose)
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value
Name: break-after
Value: auto | avoid | always | left | right | recto | verso | page | column | region | avoid | avoid-page | avoid-column | avoid-region
Initial: auto
Applies to: block-level elements, table row groups, table rows (but see prose)
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value
Name: break-inside
Value: auto | avoid | avoid-page | avoid-column | avoid-region
Initial: auto
Applies to: elements that establish formatting contexts, block containers, table row groups, and table rows (but see prose)
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value

These properties describe page/column/region break behavior before/after/inside the generated box. These values have the following meaning:

auto
Neither force nor forbid a break before/after/inside the principle box.
avoid
Avoid a break before/after/inside the principle box.
always
Always force a break before/after the principle box. Unclear whether this breaks the deepest fragmentation context, or breaks through all of them.
left
Force one or two page breaks before/after the principle box so that the next page is formatted as a left page.
right
Force one or two page breaks before/after the principle box so that the next page is formatted as a right page.
recto
Force one or two page breaks before/after the principal box so that the next page is formatted as either a left page or a right page, whichever is second (according to the page progression) in a page spread.
verso
Force one or two page breaks before/after the principal box so that the next page is formatted as either a left page or a right page, whichever is first (according to the page progression) in a page spread.
page
Always force a page break before/after the principle box.
column
Always force a column break before/after the principle box.
region
Always force a region break before/after the principle box.
avoid-page
Avoid a page break before/after/inside the principle box.
avoid-column
Avoid a column break before/after/inside the principle box.
avoid-region
Avoid a region break before/after/inside the principle box.

The CSSWG proposes to add two new values

force-any
Always force a break (of any type, whichever is the type of the deepest fragmentation context) before/after the principle box.
force-all
Always force a break (of all possible types, through all fragmentation contexts) before/after the principle box.

A potential page/column/region break location is typically under the influence of the containing block's ‘break-inside’ property, the ‘break-after’ property of the preceding element, and the ‘break-before’ property of the following element. When these properties have values other than ‘auto’, the forced break values (‘always’, ‘left’, ‘right’, ‘recto’, ‘verso’, ‘page’, ‘column’ and ‘region’) take precedence over the avoid break values (‘avoid’, ‘avoid-page’, ‘avoid-column’ and ‘avoid-region’). See the section on rules for breaking for the exact rules on how these properties affect forced breaks.

User Agents must apply these properties to boxes in the normal flow of the fragmentation root. User agents should also apply these properties to floated boxes whose containing block is in the normal flow of the root fragmented element. User agents may also apply these properties to other boxes.

3.2. Breaks Between Lines: ‘orphans’, ‘widows

Name: orphans
Value: <integer>
Initial: 2
Applies to: block containers
Inherited: yes
Percentages: N/A
Media: visual
Computed value: specified value
Name: widows
Value: <integer>
Initial: 2
Applies to: block containers
Inherited: yes
Percentages: N/A
Media: visual
Computed value: specified value

The ‘orphans’ property specifies the minimum number of line boxes in a block container that must be left in a fragment before a fragment break. The ‘widows’ property specifies the minimum number of line boxes of a block container that must be left in a fragment after a break. Examples of how they are used to control fragmentation breaks are given below.

Only positive integers are allowed as values of ‘orphans’ and ‘widows’. Negative values and zero are invalid must cause the declaration to be ignored.

If a block contains fewer lines than the value of ‘widows’ or ‘orphans’, the rule simply becomes that all lines in the block must be kept together.

3.3. Page Break Aliases: the ‘page-break-before’, ‘page-break-after’, and ‘page-break-inside’ properties

For compatibility with CSS Level 2, UAs that conform to [CSS21] must alias the ‘page-break-before’, ‘page-break-after’, and ‘page-break-inside’ properties to ‘break-before’, ‘break-after’, and ‘break-inside’ by treating the ‘page-break-*’ properties as shorthands for the ‘break-*’ properties with the following value mappings:

Shorthand (‘page-break-*’) Values Longhand (‘break-*’) Values
auto | left | right | avoidauto | left | right | avoid
alwayspage

4. Rules for Breaking

A fragmented flow may be broken across fragmentainers at a number of possible break points. In the case of forced breaks, the UA is required to break the flow at that point. In the case of unforced breaks the UA has to choose among the possible breaks that are allowed.

Some content is not fragmentable, for example many types of replaced elements (such as images or video), scrollable elements, or a single line of text content. Such content is considered monolithic: it contains no possible break points. In addition to any content which is not fragmentable, UAs may consider as monolithic any elements with ‘overflow’ set to ‘auto’ or ‘scroll’ and any elements with ‘overflow: hidden’ and a non-‘autological height (and no specified maximum logical height).

4.1. Possible Break Points

Fragmentation splits boxes in the block flow dimension. In block-and-inline flow, breaks may occur at the following places:

Class 1
Between sibling boxes of the following types:
Block-parallel Fragmentation
When the block flow direction of the siblings' containing block is parallel to that of the fragmentation context: block-level boxes, table row group boxes, table row boxes, multi-column column row boxes
Block-perpendicular Fragmentation
When the block flow direction of the siblings' containing block is perpendicular to that of the fragmentation context: table column group boxes, table column boxes, multi-column column boxes
Class 2
Between line boxes inside a block container box.
Class 3
Between the content edge of a block container box and the outer edges of its child content (margin edges of block-level children or line box edges for inline-level children) if there is a (non-zero) gap between them.

Other layout models may add breakpoints to the above classes.

Since breaks are only allowed between siblings (1), not between a box and its container, a ‘break-before’ value on a first-child box is propagated to its container. Likewise a ‘break-after’ value on a last-child box is propagated to its container.

The UA is not required to fragment the contents of monolithic elements, and may instead either slice the element's graphical representation as necessary to fragment it or treat its box as unbreakable and overflow the fragmentainer. In both cases it must treat the element as having ‘break-inside: avoid’, i.e. only slice or overflow at the fragmentainer edge if there are no possible break points on the fragmentainer.

When paginating, if there are no possible break points below the top of the page, and not all the content fits, the UA may break anywhere in order to avoid losing content off the edge of the page.

4.2. Types of Breaks

There are different types of breaks in CSS, defined based on the type of fragmentainers they span:

page break
A break between two page boxes. [CSS3PAGE]
spread break
A break between two page boxes that are not associated with facing pages. A spread break is always also a page break. [CSS3PAGE]
column break
A break between two column boxes. Note that if the column boxes are on different pages, then the break is also a page break. Similarly, if the column boxes are in different regions, then the break is also a region break. [CSS3COL]
region break
A break between two regions. Note that if the region boxes are on different pages, then the break is also a page break. [CSS3-REGIONS]

A fifth type of break is the line break, which is a break between two line boxes. These are not covered in this specification; see [CSS21].

4.3. Forced breaks

A forced break then occurs at (1) if, among the ‘break-after’ properties specified on or propagated to the earlier sibling box and the ‘break-before’ properties specified on or propagated to the later sibling box there is at least one with a forced break value.

When multiple forced break values apply to a single break point, they combine such all types of break are honored and no content-empty page boxes are generated, except for at most one content-empty page as may be required by the forced break values to position ensuing content on a specific type of page. When ‘left’, ‘right’, ‘recto’, and/or ‘verso’ are combined, the value specified on the latest element in the flow wins.

A page break must also occur at (1) if the last line box above this margin and the first one below it do not have the same value for ‘page’. See [CSS3PAGE]

When a forced break occurs, it forces ensuing content into the next fragmenter of the type associated with the break, breaking through as many fragmentation contexts as necessary until the specified break types are all satisfied. If the forced break is not contained within a matching type of fragmentation context, then the forced break has no effect.

4.4. Unforced Breaks

While breaking controls can force breaks, they can also discourage them. The following rules control whether breaking at a possible break point is allowed:

Rule A
A fragmented flow may break at (1) only if all the ‘break-after’ and ‘break-before’ values applicable to this break point allow it, which is when at least one of them forces a break or when all of them are ‘auto’.
Rule B
However, if all of them are ‘auto’ and a common ancestor of all the elements has a ‘break-inside’ value of ‘avoid’, then breaking here is not allowed.
Rule C
Breaking at (2) is allowed only if the number of line boxes between the break and the start of the enclosing block box is the value of ‘orphans’ or more, and the number of line boxes between the break and the end of the box is the value of ‘widows’ or more.
Rule D
Additionally, breaking at (2) or (3) is allowed only if the ‘break-inside’ property of all ancestors is ‘auto’.

If the above doesn't provide enough break points to keep content from overflowing the page boxes, then rules A, B and D are dropped in order to find additional breakpoints. In this case the UA may use the ‘avoid’s that are in effect at those points to weigh the appropriateness of the new breakpoints; however, this specification does not suggest a precise algorithm.

If that still does not lead to sufficient break points, rule C is dropped as well, to find still more break points.

4.5. Optimizing Unforced Breaks

While CSS3 requires that a fragmented flow must break at allowed break points in order to avoid overflowing the fragmentainers in its fragmentation context, it does not define whether content breaks at a particular allowed break. However, it is recommended that user agents observe the following guidelines (while recognizing that they are sometimes contradictory):

Suppose, for example, that the style sheet contains ‘orphans : 4’, ‘widows : 2’, and there is space for 20 lines (line boxes) available at the bottom of the current page, and the next block in normal flow is considered for placement:

Now suppose that ‘orphans’ is ‘10’, ‘widows’ is ‘20’, and there are 8 lines available at the bottom of the current page:

5. Box Model for Breaking

The sizing terminology used in this section is defined in Appendix D of [CSS3-WRITING-MODES].

5.1. Breaking into Varying-size Fragmentainers

When a flow is fragmented into varying-size fragmentainers, the following rules are observed for adapting layout:

Below are listed some implications of these rules:

Here is an example that shows the use of percentage-based progress: Suppose we have an absolutely-positioned element that is positioned ‘top: calc(150% + 30px)’ and has ‘height: calc(100% - 10px)’. If it is placed into a paginated context with a first page of 400px, a second page of 200px, and a third page of 600px, its layout progresses as follows:

5.2. Margins at Breaks

When an unforced break occurs between block-level boxes, any margins adjoining the break are truncated. When a forced break occurs there, adjoining margins before the break are truncated, but margins after the break are preserved.

5.3. Splitting Boxes at Breaks

Where a break splits a box, the ‘box-decoration-break’ property controls whether the box's margins, borders, padding, and other decorations wrap the resulting fragments where the split occurs. [CSS3BG]

Move ‘box-decoration-break’ definition here?

If the box is inline or is a block-level box with its extent specified as a <length> or <percentage>, then the fragmented content box ends at the break point and resumes after the break. Otherwise, the content box extends to fill any remaining fragmentainer extent before the content resumes (leaving room for any margins/borders/padding applied by ‘box-decoration-break: clone’).

Not extending the box to the bottom of the page could be confusing for floats, since they must take up space all the way to the bottom of the page.

In all cases, the extra extent contributed by fragmenting the box (i.e. the distance from the break point to the edge of the fragmentainer) does not consume any specified <length> or <percentage> extent.

The diagrams below illustrate the differences between fragmented boxes in the first category (gapping across the remaining fragmentainer extent) and those in the second (filling the remaining fragmentainer extent).

      slice                clone
+-----------------+  +-----------------+
| ............... |  | ............... |
| ..............  |  | ..............  |
| ............... |  | ............... |
| ..............  |  | ..............  |
| ............    |  | ............    |
| ############### |  | ############### |
| #  this box   # |  | #  this box   # |
| #  is         # |  | #  is         # |  << fixed-height block
| #  fragmented # |  | #  fragmented # |
|                 |  | ############### |  <-+
|                 |  |                 |    | remaining
|                 |  |                 |    | blank
|                 |  |                 |    | space
+-----------------+  +-----------------+  <-+

+-----------------+  +-----------------+
| ............... |  | ............... |
| ..............  |  | ..............  |
| ............... |  | ............... |
| ..............  |  | ..............  |
| ............    |  | ............    |
| ############### |  | ############### |
| #  this box   # |  | #  this box   # |
| #  is         # |  | #  is         # |  << auto-height block
| #  fragmented # |  | #  fragmented # |
| #             # |  | #             # |  <-+
| #             # |  | #             # |    | remaining
| #             # |  | #             # |    | blank
| #             # |  | ############### |    | space
+-----------------+  +-----------------+  <-+

6. Conformance

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

6.2. Conformance Classes

Conformance to CSS Fragmentation 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 CSS Fragmentation if all of its declarations that use properties defined in this module have values that are valid according to the generic CSS grammar and the individual grammars of each property as given in this module.

A renderer is conformant to CSS Fragmentation if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the features defined by CSS Fragmentation 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 CSS Fragmentation 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.

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

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

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

6.6. CR Exit Criteria

For this specification to be advanced to Proposed Recommendation, there must be at least two independent, interoperable implementations of each feature. Each feature may be implemented by a different set of products, there is no requirement that all features be implemented by a single product. For the purposes of this criterion, we define the following terms:

independent
each implementation must be developed by a different party and cannot share, reuse, or derive from code used by another qualifying implementation. Sections of code that have no bearing on the implementation of this specification are exempt from this requirement.
interoperable
passing the respective test case(s) in the official CSS test suite, or, if the implementation is not a Web browser, an equivalent test. Every relevant test in the test suite should have an equivalent test created if such a user agent (UA) is to be used to claim interoperability. In addition if such a UA is to be used to claim interoperability, then there must one or more additional UAs which can also pass those equivalent tests in the same way for the purpose of interoperability. The equivalent tests must be made publicly available for the purposes of peer review.
implementation
a user agent which:
  1. implements the specification.
  2. is available to the general public. The implementation may be a shipping product or other publicly available version (i.e., beta version, preview release, or “nightly build”). Non-shipping product releases must have implemented the feature(s) for a period of at least one month in order to demonstrate stability.
  3. is not experimental (i.e., a version specifically designed to pass the test suite and is not intended for normal usage going forward).

The specification will remain Candidate Recommendation for at least six months.

Changes

The following significant changes were made since the 28 February 2012 Working Draft:

Acknowledgments

The editors would like to thank Michael Day, Alex Mogilevsky, and Florian Rivoal for their contributions to this module. Special thanks go to the former [CSS3PAGE] editors Jim Bigelow (HP), Melinda Grant (HP), Håkon Wium Lie (Opera), and Jacob Refstrup (HP) for their contributions to this specification, which is a successor of their work there.

References

Normative references

[CSS21]
Bert Bos; et al. Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification. 7 June 2011. W3C Recommendation. URL: http://www.w3.org/TR/2011/REC-CSS2-20110607
[CSS3-REGIONS]
Vincent Hardy; Alex Mogilevsky; Alan Stearns. CSS Regions Module Level 3. 3 May 2012. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2012/WD-css3-regions-20120503/
[CSS3BG]
Bert Bos; Elika J. Etemad; Brad Kemper. CSS Backgrounds and Borders Module Level 3. 17 April 2012. W3C Candidate Recommendation. (Work in progress.) URL: http://www.w3.org/TR/2012/CR-css3-background-20120417/
[CSS3COL]
Håkon Wium Lie. CSS Multi-column Layout Module. 12 April 2011. W3C Candidate Recommendation. (Work in progress.) URL: http://www.w3.org/TR/2011/CR-css3-multicol-20110412
[CSS3PAGE]
Håkon Wium Lie; Melinda Grant. CSS3 Module: Paged Media. 10 October 2006. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2006/WD-css3-page-20061010
[RFC2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. Internet RFC 2119. URL: http://www.ietf.org/rfc/rfc2119.txt

Other references

[CSS3-WRITING-MODES]
Elika J. Etemad; Koji Ishii. CSS Writing Modes Module Level 3. 1 May 2012. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2012/WD-css3-writing-modes-20120501/
[CSS3COLOR]
Tantek Çelik; Chris Lilley; L. David Baron. CSS Color Module Level 3. 7 June 2011. W3C Recommendation. URL: http://www.w3.org/TR/2011/REC-css3-color-20110607
[CSS3TEXT]
Elika J. Etemad; Koji Ishii. CSS Text Level 3. 19 January 2012. W3C Working Draft. (Work in progress.) URL: http://www.w3.org/TR/2012/WD-css3-text-20120119/

Index

Property index

Property Values Initial Applies to Inh. Percentages Media
break-after auto | avoid | always | left | right | recto | verso | page | column | region | avoid | avoid-page | avoid-column | avoid-region auto block-level elements, table row groups, table rows (but see prose) no N/A visual
break-before auto | avoid | always | page | left | right | recto | verso | column | region | avoid-page | avoid-column | avoid-region auto block-level elements, table row groups, table rows (but see prose) no N/A visual
break-inside auto | avoid | avoid-page | avoid-column | avoid-region auto elements that establish formatting contexts, block containers, table row groups, and table rows (but see prose) no N/A visual
orphans <integer> 2 block containers yes N/A visual
widows <integer> 2 block containers yes N/A visual