1. Overview
This section is not normative.
This specification adds new keywords on the float property.
This document allows to specify whether a float floats to align with a float reference inline box, column, region or page. In the case of floats with a reference fragmentation container, placement can be deferred to a subsequent fragmentation container with the float-defer properties.
New values on the clear property add further ways of refining layouts.
The way contents wrap around floats can be controlled by changing the value of the wrap-flow property which initially is set to both for page floats.
Page floats as defined here work with different types of fragmentation types (columns, regions, pages) as well as container elements. The specification is no longer specific to print or to pages. At the same time, inline floats and page floats differ in many ways, and it may (or may not) be a good idea to separate the two entirely. Therefore, the name CSS Page Floats should probably be replaced with a more appropriate name.
2. Terminology
- Float
- An element which has float set to something else than none.
- Float block formatting context
- The block formatting context which is generated by a float and which contains its contents.
- Float anchor
- The float anchor is the point in the flow where the float had appeared had it not been a float and instead had been an empty inline element with no margins, borders or padding.
- Float containing block formatting context
- The block formatting context inside of which the float is embedded.
- Initial float reference
- The entity to which the float is aligned initially, before float placement takes place.
- Float reference
- The entity to which the float is aligned.
- Not overlapping
- Two elements are not overlapping if the margin box of one element is not overlapping the margin box of the other element.
3. Floating to the inline-start/inline-end and block-start/block-end
Floating elements can float to the start or end of the float anchor’s line or block, specified by the float attribute. The floats are aligning to the start or end of a float reference, specified by the float-reference attribute. The float reference can be the float anchor’s line box, column, region or page.
3.1. The float-reference property
Name: | float-reference |
---|---|
Value: | inline | column | region | page |
Initial: | inline |
Applies to: | all elements. |
Inherited: | no |
Percentages: | N/A |
Media: | visual |
Computed value: | as specified. |
Animatable: | no |
- inline
-
The float reference is the line box of the float anchor.
The float containing block formatting context is the same as that of the float anchor.
- column
-
The float reference is the column in a multi column environment in
which the float anchor is placed. If the float anchor is not
inside a column, the float reference is the line box of the float
anchor.
The float containing block formatting context is a new block formatting context with the same dimensions and placement as the float reference.
- region
-
The float reference is the region in a region-chain within which the float anchor is placed. If the float anchor is not inside a
region, the float reference is the line box of the float
anchor.
The float containing block formatting context is a new block formatting context with the same dimensions and placement as the float reference.
- page
-
The float reference of the float is the page within which the float
anchor is placed. If the float anchor is not inside a page, the float reference is the line box of the float anchor.
The float containing block formatting context is a new block formatting context with the same dimensions and placement as the float reference
Maybe something like:
First paragraphFLOAT
Second paragraph
[FLOAT]
And some more text
This should float both floats with reference to the
and inline elements.
3.2. The float property
Name: | float |
---|---|
Value: | block-start | block-end | inline-start | inline-end | snap-block | snap-inline | left | right | top | bottom | none |
Initial: | none |
Applies to: | all elements. |
Inherited: | no |
Percentages: | N/A |
Media: | visual |
Computed value: | as specified. |
Animatable: | no |
- inline-start
- The element generates a box that is floated to the line-start outer edge of the float reference. Content flows on the line-end side of the box.
- inline-end
- The element generates a box that is floated to the line-end outer edge of the float reference. Content flows on the line-start side of the box.
- block-start
-
If the float reference is a line box, block-start behaves like
inline-start.
If the float reference is not a line box, the element generates a box that is floated to the block-start and line-start outer edges of the float reference.
The initial value of the max-width or max-height property that refers to the inline size of the float is '100%'.
Content flows on the block-end side of the box.
- block-end
-
If the float reference is a line box, block-end behaves like inline-end.
If the float reference is not a line box, the element generates a box that is floated to the block-end and line-start outer edges of the float reference.
The initial value of the max-width or max-height property that refers to the inline size of the float is '100%'.
Content flows on the block-start side of the box.
- left
-
If the float reference is a line box, behaves like inline-start or
inline-end, whichever corresponds to line-left for the float reference.
Otherwise, behaves like block-end, inline-start or inline-end depending on the float containing block’s direction and writing-mode.
- right
-
If the float reference is a line box, behaves like inline-start or
inline-end, whichever corresponds to line-right for the float reference.
Otherwise, behaves like block-start, inline-start or inline-end depending on the float containing block’s direction and writing-mode.
- top
- Behave like block-start or inline-start depending on the float containing block’s direction and writing-mode.
- bottom
- Behave like block-end or inline-end depending on the float containing block’s direction and writing-mode.
- snap-block(
[, start | end | near ]?) -
Makes the element float to the start or the end of the block if it
naturally appears within a certain distance from either one. The length
value(s) specifies the maximum distance from the start/end that an element
must be within in order to be floated; one length value specifies the
distance from both the start and the end, two length values specify the
distance from the start and end, respectively.
The optional keyword value specifies where the element is floated: start, end, or the nearest of the two. The initial value is near. If near is in effect and the element is within the specified distance both from the start and the end, end wins.
An element is considered to be a float if it has a snap-block() value, even if the element does not appear within the specified distance. This way, it can be determined whether an element is float or not without laying out the document.
- snap-block
- same as
snap-block(2em, near)
- snap-inline(
[, left | right | near ]?) -
Makes the element float to the line start or line end if it naturally
appears within a certain distance from the start or end of the line. The
length value(s) specifies the maximum distance from the start/end that an
element must be within in order to be floated; one length value specifies
the distance from both the start and the end, two length values specify the
distance from the start and end, respectively.
The optional keyword value specifies where the element is floated: line start, line end, or the nearest of the two. The initial value is near. If near is in effect and the element is within the specified distance both from the start and the end, end wins.
An element is considered to be a float if it has a snap-inline() value, even if the element does not appear within the specified distance. This way, it can be determined whether an element is float or not without laying out the document.
- snap-inline
- same as
snap-inline(2em, near)
- none
- The box is not floated.
.figure { float-reference: column; float: block-start; width: 50% }
To avoid the white space, the image can be floated to the nearest edge (in the block direction):
.figure { float-reference: column; float: snap-block }
In this example, the figure is already at the nearest edge, so it does not move. However, floats allow subsequent content to be displayed before the float and the white space can therefore be filled:
In this example, two figures naturally appear in the text flow:
A typographer would typically try to avoid single lines of text above/below figures, which can be achieved with:
div.figure { float-reference: column; float: snap-block(1.5em) }
The length value specifies the reach of the snap function; in this example the second figure is affected, but not the first.
In this example, two figures naturally appear in the text flow:
To make the figures snap to the nearest edges, this code can be applied:
div.figure { float-reference: column; float: snap-block(2.5em) }
The resultant rendering is:
table { float: snap } table { float: snap-block(3em) } table { float: snap-block(3em, bottom) } table { float: snap-block(3em 2em, bottom) }
4. The clear property
Name: | clear |
---|---|
Value: | inline-start | inline-end | block-start | block-end | left | right | top | bottom | none |
Initial: | none |
Applies to: | block-level elements, floats, regions, pages |
Inherited: | no |
Percentages: | N/A |
Media: | visual |
Computed value: | as specified. |
Animatable: | no |
To prevent stacking of floats, the clear property can be used:
- inline-start
-
If applied to an inline float, requires that the block-start outer edge of
the box comes after the block-end outer edge of any inline-start-floats
with an inline-start-float-reference that resulted from elements earlier
in the source document.
If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the inline-start direction.
- inline-end
-
If applied to a block-level element or a float with a float-reference set
to inline, requires that the block-start outer edge of the box comes after
the block-end outer edge of any inline-end-floats with an
inline-end-float-reference that resulted from elements earlier in the
source document.
If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the inline-end direction.
- block-start
-
If applied to a block-level element or a float with a float-reference set
to inline, behave like inline-start.
If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the block-start direction.
- block-end
-
If applied to a block-level element or a float with a float-reference set
to inline, behave like inline-end.
If applied to a page float, the float reference in which the page float is placed will be seen as full when determining whether it can host subsequent page floats that float in the block-end direction.
- left
- Behave like block-end, inline-start or inline-end depending on the float containing block’s direction and writing-mode.
- right
- Behave like block-start, inline-start or inline-end depending on the float containing block’s direction and writing-mode.
- top
- Behave like block-start or inline-start depending on the float containing block’s direction and writing-mode.
- bottom
- Behave like block-end or inline-end depending on the float containing block’s direction and writing-mode.
.figure { float-reference: column; float: bottom; clear: none }
.figure { float-reference: column; float: bottom; clear: bottom }
.figure { float-reference: column; float: bottom; clear: top }
.figure { float-reference: column; float: bottom; clear: bottom }
.figure { float-reference: page; float: top; clear: top }
.figure.one { float-reference: column; float: top; clear: top } .figure.two { float-reference: column; float: bottom; clear: bottom }
5. Deferring floats
Users can influence the placement of a page float by deferring them to another fragmentation container than where the float anchor is placed.
Float deferring assigns an initial float reference, yet float stacking can lead page floats being moved to a subsequent fragmentation container if their initial float reference lacks the space to host them.
The float-defer property is introduced to control deferring floats:
5.1. The float-defer property
Name: | float-defer |
---|---|
Value: | |
Initial: | none |
Applies to: | floats |
Inherited: | no |
Percentages: | N/A |
Media: | visual |
Computed value: | as specified. |
Animatable: | no |
This property specifies whether the initial float reference of a page float is the fragmentation container in which the float anchor is placed after previous page floats have been placed, or in another one. Values are:
- none
- The initial float reference is the fragmentation container in which the float anchor is placed after all previous page floats have been placed.
-
A positive integer value indicates that the initial float reference of
the page float should be Nth fragmentation container of the `fragmentation
flow`, where N is the value of the `float-defer` property plus the order
number of the fragmentation container in which the float anchor is placed
after all previous page floats have been placed within the given fragmentation context. If N is larger than the order number of the last fragmentation container within the given fragmentation context at the time of
assignment, then N is the order number of the last fragmentation container within the given fragmentation context.
A negative integer value indicates that the initial float reference of the page float should be a fragmentation container of the fragmentation context, counting backward from the end, so that -1 is the last fragmentation container, -2 is the next-to-last, etc. . In the case of a negative integer value, the initial float reference is the Nth fragmentation container of the fragmentation context, where N is 1 plus the order number of the last fragmentation container within the given fragmentation context after all previous page floats have been placed plus the value of the `float-defer` property.
Zero is the same as `none`.
If the value of the `float-defer` property would cause the initial float reference to be an inexistent fragmentation container, the property is interpreted as if it were zero.
Negative float-defer values put the initial float reference a certain number to be a certain amount of fragmentation containers from the last fragmentation container at the time of of the placement. Subsequent page float stacking can mean that a page float is being placed in a later fragmentation container (a page float with float-defer set to -3 can end up being placed in the last fragmentation container), and later page floats may mean that new fragmentation containers are added, so that the a fragmentation container that previously was Nth last fragmentation container within a fragmentation context now is the N+Xth last. Additional fragmentation container(s) that are added after the page float was placed, will not cause the page float to be moved.
- last
- The initial float reference is the last fragmentation container within the given fragmentation context after all previous page floats have been placed.
.figure { float-reference: region } .figure { float: top } .figure { float-defer: 1 }
.figure { float-reference: column; float: top; float-defer: -2 }
.figure { float-reference: page } .figure { float: top } .figure { float-defer: -1 }
.figure { float-reference: column } .figure { float: top } .figure { float-defer: last }
.figure { float-reference: column; float: top; float-defer: last }
6. Wrapping around floats
Floats have their wrap-flow property set to both initially and are treated like exclusions. This specification does not make any further specification about wrapping contents around floats.
7. The float-offset property
Name: | float-offset |
---|---|
Value: | |
Initial: | 0 |
Applies to: | floats |
Inherited: | no |
Percentages: | see prose |
Media: | visual |
Computed value: | one absolute length |
Animatable: | no |
This property pushes a float in direction opposite of the where it has been floated with float.
This property can only influence a page float along an axis along which it has been floated.
-
Percentage values are computed according to this formula:
(containing-block-width - float-width) * percentage (containing-block-height - float-height) * percentage
img { float-reference: column; float: left; float-offset: 2em; }
In this example, the image is floated to the left. Therefore, float-offset may only push the element to the right.
.pullquote { float-reference: region; float: right; float-offset: 50%; /* 50% centers the box */ }
8. Page float placement
The order of page floats placement is determined by the following rules:
- All page floats with float-reference set to `page` are placed, in document order, before those with float-reference set to `region` and `column`.
- Thereafter, page floats with float-reference set to `column` and `region` are placed in document order.
The placement of a single page float is a process that has to be terminated entirely before the placement of a subsequent page float can be initiated. The placement process consists of the following steps:
- Determine the initial float reference by considering the fragmentation container in which the float anchor is placed and the `float-defer` property of the page float. The float reference is initially set to be the same as the initial float reference.
- Determine if the given float reference has enough space or can be expanded to host the page float, if the rules of float stacking and float reference growth are to be followed. If this is not the case, and the float reference is not the last fragmentation container within the given fragmentation context, then make the following fragmentation container within the given fragmentation context the float reference. Repeat this step until the float reference can be expanded enough to host the page float or it is the last fragmentation container within the given fragmentation context.
- If the float reference is the last fragmentation container within
the given fragmentation context, and it has not enough space and cannot be
expanded to host the page float, then do the following:
- If the fragmentation context allows for the addition of another fragmentation container and an additional fragmentation container would have the needed size to host the page float, a new fragmentation container is added to the end of the fragmentation context. The float reference is set the newly created fragmentation container.
- Otherwise, if the fragmentation container is a region, then the 'regionOverset` attribute of the fragmentation container is set to `overset`.
- The page float is placed in the float reference according to the rules of 'float stacking' and 'float reference growth'.
8.1. Float reference growth
Float references can grow up to the their `max-height` and `max-width` or their `available size`, whichever is the lowest, in order to accommodate page floats.
8.2. Rules for Float stacking
Page floats are stacked within a given float reference in the order of their placement and in the direction of the inline- and flow-directions of the fragmentation context while not overlapping with any other page floats with the same float reference and by keeping a distance N between the page float’s margin edge and the padding edge of the float reference as well as between the page float’s margin edge and the margin edge of the last previously placed page float with the same float reference and the same float value, where N is the float-offset value of the page float. For the placement it is assumed that the page floats in the block directions fill the entire line size of the float reference and page floats in the inline direction fill the entire block size of the float reference.
If the page float has a defined clear-value, then the float reference in which the page float is placed is closed for all subsequent page floats that floating in the direction specified by the clear-value.
This definition may be a bit too simple, as it does not allow for page floats that go in the line direction and block direction within the same fragmentation container.
9. Floats and absolutely positioned exclusions
Floats and absolutely positioned exclusions share some common traits, but in the case of inline floats they are not the same. Floats that are not inline floats should behave the same as absolutely positioned exclusions with positions and sizes manually set to prevent overlap between floats and to prevent floats from moving beyond the edges of the float reference, with the float reference being grown as much as needed up to its maximum extend to accommodate all containing floats.
9.1. Differences between inline floats and absolutely positioned elements
This section is not normative.
Inline floats and absolutely positioned elements are both out-of-flow elements. Absolutely positioned elements that are also exclusions can imitate many of the features of floats.
However, in the case of inline floats, the block formatting context that contains them (the float containing block formatting context) is required to include the area occupied by the float, which is not a requirement for absolutely positioned elements.
First paragraph.
Second paragraph and some more text.
In comparison, the below is the same HTML, but the float is replaced by an absolutely positioned element that is also an exclusion. The float containing block formatting context is still given by a display-inline-block element. However, the element, marked by a green border, does not expand to include the brown, absolutely positioned element.
First paragraph.
Second paragraph and some more text.
10. Overconstrained floats
In many cases, the specified values on these properties cannot be honored.
The number of columns is limited, and high values therefore cannot be honored:
.figure { float-reference: column; float: top; float-defer: 1000 }
.figure { float-reference: column; float: top; float-defer: -5 }
p { float-reference: page; float: top; float-defer: last }
Floats are processed in the order they appear in the source. However, the visual order of floats may not be the same as the source order.
.one { float-reference: page; float: top; float-defer: last } .two { float-reference: column; float: top; clear: column }
In this example, the first element requests to appear on the last page, while the second element requests to appear in the natural column. If the natural column of the second element appears on a page before the last page, the second element will appear visually before the first.
Consider this code:
.one { float-reference: page; float: top; float-defer: last } .two { float-reference: page; float: top; clear: page; }
If all content can fit on one page, the first page will also be the last page. The first element is processed first and is placed on top of the first page. Then the second element is processed. It requests a clear top, something which is not possible on the first page. Therefore, a second page is created and the first element is moved there. Even if the first element requests to be on the last page, it will not appear there.
When resolving over-constrained layouts, the order of importance for defined goals are:
- honor 'clear: top/bottom'
- honor float-defer
- honor 'float: top/bottom'
- display all content (as described by other CSS properties)
- keep the number of pages to a minimum
Acknowledgments
This specification is made possible by input from Tab Atkins Jr., David Baron, Lars Erik Bolstad, Bert Bos, Mike Bremford, Michael Day, Werner Donné, Brady Duga, James Elmore, Elika Etemad, Michel Fortin, Daniel Glazman, Melinda Grant, Ian Hickson, Laurens Holst, Brad Kemper, Toru Kawakubo, Rune Lillesveen, Peter Linss, Cameron McCormack, Paul E. Merrell, Del Merritt, Markus Mielke, Kelly Miller, Alex Mogilevsky, Peter Moulder, Shinyu Murakami, Michel Onoff, Anton Prowse, Liam R E Quin, Jacob Grundtvig Refstrup, Florian Rivoal, Christian Roth, Allan Sandfeld Jensen, Simon Sapin, Morten Stenshorne, Philip Taylor, Ian Tindale, Ladd Van Tol, Tarquin (Mark) Wilton-Jones, Steve Zilles, Tantek Çelik and the CSS Working Group members.
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:
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 , like
this: UAs MUST provide an accessible alternative.
Conformance classes
Conformance to this specification is defined for three conformance classes:
- style sheet
- A CSS style sheet.
- renderer
- A UA that interprets the semantics of a style sheet and renders documents that use them.
- authoring tool
- A UA that writes a style sheet.
A style sheet is conformant to this specification if all of its statements that use syntax defined in this module are valid according to the generic CSS grammar and the individual grammars of each feature defined in this module.
A renderer is conformant to this specification if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the features defined by this specification by parsing them correctly and rendering the document accordingly. However, the inability of a UA to correctly render a document due to limitations of the device does not make the UA non-conformant. (For example, a UA is not required to render color on a monochrome monitor.)
An authoring tool is conformant to this specification if it writes style sheets that are syntactically correct according to the generic CSS grammar and the individual grammars of each feature in this module, and meet all other conformance requirements of style sheets as described in this module.
Partial implementations
So that authors can exploit the forward-compatible parsing rules to assign fallback values, CSS renderers must treat as invalid (and ignore as appropriate) any at-rules, properties, property values, keywords, and other syntactic constructs for which they have no usable level of support. In particular, user agents must not selectively ignore unsupported component values and honor supported values in a single multi-value property declaration: if any value is considered invalid (as unsupported values must be), CSS requires that the entire declaration be ignored.
Experimental implementations
To avoid clashes with future CSS features, the CSS2.1 specification reserves a prefixed syntax for proprietary and experimental extensions to CSS.
Prior to a specification reaching the Candidate Recommendation stage in the W3C process, all implementations of a CSS feature are considered experimental. The CSS Working Group recommends that implementations use a vendor-prefixed syntax for such features, including those in W3C Working Drafts. This avoids incompatibilities with future changes in the draft.
Non-experimental implementations
Once a specification reaches the Candidate Recommendation stage, non-experimental implementations are possible, and implementors should release an unprefixed implementation of any CR-level feature they can demonstrate to be correctly implemented according to spec.
To establish and maintain the interoperability of CSS across implementations, the CSS Working Group requests that non-experimental CSS renderers submit an implementation report (and, if necessary, the testcases used for that implementation report) to the W3C before releasing an unprefixed implementation of any CSS features. Testcases submitted to W3C are subject to review and correction by the CSS Working Group.
Further information on submitting testcases and implementation reports can be found from on the CSS Working Group’s website at http://www.w3.org/Style/CSS/Test/. Questions should be directed to the [email protected] mailing list.
Index
Terms defined by this specification
-
block-end
- value for float, in §3.2
- value for clear, in §4
-
block-start
- value for float, in §3.2
- value for clear, in §4
-
bottom
- value for float, in §3.2
- value for clear, in §4
- clear, in §4
- column, in §3.1
- float, in §3.2
- Float, in §2
- Float anchor, in §2
- Float block formatting context, in §2
- Float containing block formatting context, in §2
- float-defer, in §5.1
- float-offset, in §7
- float-reference, in §3.1
- Float reference, in §2
- Initial float reference, in §2
- inline, in §3.1
-
inline-end
- value for float, in §3.2
- value for clear, in §4
-
inline-start
- value for float, in §3.2
- value for clear, in §4
-
left
- value for float, in §3.2
- value for clear, in §4
- none, in §3.2
- Not overlapping, in §2
- page, in §3.1
- region, in §3.1
-
right
- value for float, in §3.2
- value for clear, in §4
- snap-block, in §3.2
- snap-block(
[, start | end | near ]?) , in §3.2 - snap-inline, in §3.2
- snap-inline(
[, left | right | near ]?) , in §3.2 -
top
- value for float, in §3.2
- value for clear, in §4
Terms defined by reference
- [css-break-3] defines the following terms:
- [css-exclusions-1] defines the following terms:
- [css-values] defines the following terms:
- [css-writing-modes-3] defines the following terms:
References
Normative References
- [CSS-BREAK-3]
- CSS Fragmentation Module Level 3 URL: http://www.w3.org/TR/css3-break/
- [CSS-EXCLUSIONS-1]
- CSS Exclusions Module Level 1 URL: http://www.w3.org/TR/css3-exclusions/
- [CSS-VALUES]
- Tab Atkins Jr.; Elika Etemad. CSS Values and Units Module Level 3. 11 June 2015. CR. URL: http://www.w3.org/TR/css-values/
- [CSS-WRITING-MODES-3]
- Elika Etemad; Koji Ishii. CSS Writing Modes Level 3. 20 March 2014. CR. URL: http://www.w3.org/TR/css-writing-modes-3/
- [RFC2119]
- S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://tools.ietf.org/html/rfc2119
Informative References
- [CSS3GCPM]
- Dave Cramer. CSS Generated Content for Paged Media Module. 13 May 2014. WD. URL: http://www.w3.org/TR/css-gcpm-3/
Property Index
Name | Value | Initial | Applies to | Inh. | %ages | Media | Animatable | Computed value |
---|---|---|---|---|---|---|---|---|
float-reference | inline | column | region | page | inline | all elements. | no | N/A | visual | no | as specified. |
float | block-start | block-end | inline-start | inline-end | snap-block | snap-inline | left | right | top | bottom | none | none | all elements. | no | N/A | visual | no | as specified. |
clear | inline-start | inline-end | block-start | block-end | left | right | top | bottom | none | none | block-level elements, floats, regions, pages | no | N/A | visual | no | as specified. |
float-defer | none | floats | no | N/A | visual | no | as specified. | |
float-offset | 0 | floats | no | see prose | visual | no | one absolute length |
Issues Index
Maybe something like:
First paragraphFLOAT
Second paragraph
[FLOAT]
And some more text
This should float both floats with reference to the
and inline elements.
↵