W3C

CSS Collision Module Level 3

Editor's Draft 27 October 2012

This version:
N/A
Latest version:
N/A
Editor's draft:
N/A
Previous version:
N/A
Issue Tracking:
N/A
Feedback:
www-style@w3.org with subject line “[www-style] … message topic …
Editors:
,

Abstract

This module contains the features of CSS relating to avoiding collisions between layout boxes.. 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 is a public copy of the editors' draft. It is provided for discussion only and may change at any moment. Its publication here does not imply endorsement of its contents by W3C. Don't cite this document other than as 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 “www-style” in the subject, preferably like this: “[www-style] …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.

Table of contents

1. Introduction

This section is not normative.

CSS provides several layout mechanisms, allowing authors to position their content in various ways. In some cases, the instructions given by the author may cause several parts of the document to overlap, making the content unreadable. Viewing the document in an environment significantly different from the one the author expected may increase the chances of such overlap happening. This module introduces an collision avoidance mechanism that authors can use in such situations.

1.1. Module interactions

Explain, normatively, how this module affects the definition of CSS.

This module replaces and extends the SUMMARIZE HERE features defined in [CSS21] sections W.X and Y.Z.

All properties in this module apply to the ::first-line and ::first-letter pseudo-elements.

1.2. Values

This specification follows the CSS property definition conventions from [CSS21]. Value types not defined in this specification are defined in CSS Level 2 Revision 1 [CSS21]. Other CSS modules may expand the definitions of these value types: for example [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. The ‘collision’ property

Name: collision
Value: auto | allow | avoid
Initial: auto
Applies to: all elements
Inherited: no
Percentages: N/A
Media: visual
Computed value: See prose
Animatable: no

The computed value of ‘auto’ is ‘allow’ except when at least one of the following two conditions are matched:

Unless specified otherwise for a particular layout mode, two elements are said to overlap when their margin boxes intersect.

What about shapes?

If two elements which both have a computed value of ‘avoid’ overlap each other when positioned according to the normal rules of their respective positioning schemes, the later one in document order is repositioned so that it no longer overlap with any other element preceding it in document order whose ‘collision’ property also compute to ‘avoid’ . If this repositioning causes the element to overlap with element later in document order whose ‘collision’ property compute to ‘avoid’, then these later elements must also me moved. The precise way the elements are repositioned depends on their respective layout mechanisms, as listed in the following sections.

Should the effect of the break-before, break-after, break-inside properties be evaluated after the box has been repositioned to avoid collisions? Before? Both?

2.1. Floats

On elements where the ‘float’ property computes to something else than ‘none’, the collision avoiding behavior is the historical one, as described in insert reference.

Write some prose to describe what happens with floats and collision:allow. The idea is that if a wide float:left containing xxxxxxx collides with narrow one containing ......... we will get this:

...
...
...xx
...xx
xxxxx
xxxxx

2.2. Absolute, fixed and sticky? positioning

We define 4 types of repositioning movements, and then indicate in which case each is used.

Movement A:
Move forward in the element's inline direction
Movement B:
Move backward in the element's inline direction
Movement C:
Move forward in the element's block progression direction
Movement D:
Move backward in the element's block progression direction

Determine the element's writing mode, to identify which of the top/right/bottom/left properties correspond to the head/end/foot/start directions. Then, based on which of these is set to auto or to another value, pick a movement:

start end head foot Movement
auto auto auto auto C
auto auto auto C
auto auto auto C
auto auto C
auto auto auto C
auto auto C
auto auto C
auto C
auto auto auto D
auto auto D
auto auto D
auto D
auto auto A
auto A
auto B
C

While the above table of movements should cover a majority of use cases, there is another set of movements that may be worth considering, which are more analogus to what floats do when the clear property is set to ‘none’. With the 4 extra movements defined below, an alternative table of movements can be established. It is tempting to use the existing ‘clear’ property, maybe with new additional values to make chose between one set of behavior and the other, but I am not convinced it is possible while conserving compatibility and sanity. When introducing a property to opt in the behavior described below, we have the option of making the switch for all cases simultaneously, or having more fine grained control, enabling the alternative behavior 1 line at a time.

Movement E:
Move forward in the element's inline direction, unless that would cause you to overflow your container, in which case you move forward in the element's block progression direction instead.
Movement F:
Move backward in the element's inline direction, unless that would cause you to overflow your container, in which case you move forward in the element's block progression direction instead.
Movement G:
Move forward in the element's inline direction, unless that would cause you to overflow your container, in which case you move backward in the element's block progression direction instead.
Movement H:
Move backward in the element's inline direction, unless that would cause you to overflow your container, in which case you move backward in the element's block progression direction instead.

We then have the following mapping, when the opt-in property does not apply. The rows marked with * are different from the previous table.

start end head foot Movement
auto auto auto auto E*
auto auto auto E*
auto auto auto F*
auto auto C
auto auto auto C
auto auto E*
auto auto F*
auto C
auto auto auto D
auto auto G*
auto auto H*
auto D
auto auto A
auto A
auto B
E*
Need a lot of examples to illustrate the possibilities

2.3. Inlines

needs formal description. In case of collision, the text inside the line box is what gets moved forward, to avoid overlapping. This needs a special definition of collisions, as this isn't based on the margin box.

2.4. Blocks

In flow block boxes avoid collisions by being moved forward in the block progression direction until they no longer overlap. This move is similar to increasing the size of their top margin. This does not or does it? influence the computed or used value of the margin-top property.

2.5. Write something about: Tables and rows and cells, flexbox, grid, runins, lists...

3. Conformance

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

3.2. Conformance classes

Conformance to CSS Collision Level 3 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 Collision Level 3 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 CSS Collision Level 3 if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the features defined by CSS Collision Level 3 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 Collision Level 3 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.

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

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

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

3.6. CR exit criteria

[Change or remove the following CR exit criteria if the spec is not a module, but, e.g., a Note or a profile. This text was decided on 2008-06-04.]

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.

Acknowledgments

Feeback and comments from the following people have helped improve this specification:

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
[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

[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

Index

Property index

Property Values Initial Applies to Inh. Percentages Media
collision auto | allow | avoid auto all elements no N/A visual