Copyright © 2014 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved. W3C liability, trademark and document use rules apply.
This specification describes multi-column layouts in CSS, a style sheet language for the web. Using functionality described in the specification, content can be flowed into multiple columns with a gap and a rule between them.
CSS is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, in speech, etc.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 “css-multicol” in the subject, preferably like this: “[css-multicol] …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.
(This section is not normative.)
This module describes multi-column layout in CSS. By using functionality described in this document, style sheets can declare that the content of an element is to be laid out in multiple columns.
On the Web, tables have also been used to describe multi-column layouts. The main benefit of using CSS-based columns is flexibility; content can flow from one column to another, and the number of columns can vary depending on the size of the viewport. Removing presentation table markup from documents allows them to more easily be presented on various output devices including speech synthesizers and small mobile devices.
Multi-column layouts are easy to describe in CSS. Here is a simple example:
body { column-width: 12em }
In this example, the body element is
set to have columns at least 12em wide. The exact number of
columns will depend on the available space.
The number of columns can also be set explicitly in the style sheet:
body { column-count: 2 }
In this case, the number of columns is fixed and the column widths will vary depending on the available width.
The shorthand columns property can be used to set either, or both, properties in one declaration.
body { columns: 2 }
body { columns: 12em }
body { columns: 2 12em }
However, as described below, setting both the width and number of columns rarely makes sense.
Another group of properties introduced in this module describe gaps and rules between columns.
body {
column-gap: 1em;
column-rule: thin solid black;
}
The first declaration in the example above sets the gap between two adjacent columns to be 1em. Column gaps are similar to padding areas. In the middle of the gap there will be a rule which is described by the column-rule property.
The values of the column-rule property are similar to those of the CSS border properties. Like border, column-rule is a shorthand property.
body {
column-gap: 1em;
column-rule-width: thin;
column-rule-style: solid;
column-rule-color: black;
}
The column-fill and column-span properties give style sheets a wider range of visual expressions in multi-column layouts.
h2 elements are set
to span across all columns.
div { column-fill: balance }
h2 { column-span: all }
This specification introduces ten new properties, all of which are used in the examples above.
To indicate where column breaks should (or should not) appear, new keyword values are introduced.
h1 elements will always have a column
break before them, but the formatter will try to avoid column breaks
inside and after the element.
h1 {
break-before: column;
break-inside: avoid-column;
break-after: avoid-column;
}
If all column properties have their initial value, the layout of an element will be identical to a multi-column layout with only one column.
A multi-column element (or multicol element for short) is an element whose column-width or column-count property is not auto and therefore acts as a container for multi-column layout.
In the traditional CSS box model, the content of an element is flowed into the content box of the corresponding element. Multi-column layout introduces a new type of container between the content box and the content, namely the column box (or column for short). The content of a multicol element is flowed into its column boxes.
Column boxes in a multi-column element are arranged into rows. Like table cells, the column boxes in a row are ordered in the inline direction of the multicol element. The column width is the length of the column box in the inline direction. The column height is the length of the column box in the block direction. All column boxes in a row have the same column width, and all column boxes in a row have the same column height. Within each row in the multi-column element, adjacent column boxes are separated by a column gap, which may contain a column rule. All column gaps in the same row are equal. All column rules in the same row are also equal, if they appear; column rules only appear between columns that both have content.
In the simplest case a multicol element will contain only one row of columns, and the height of each column will be equivalent to the used height of the multi-column element’s content box.
If the multi-column element is paginated, the height of each row is constrained by the page and the content continues in a new row of column boxes on the next page; a column box never splits across pages.
The same effect occurs when a spanning element divides the multi-column element: the columns before the spanning element are balanced and shortened to fit their content. Content after the spanning element then flows into a new row of column boxes.
Column boxes are block container boxes. That is, column boxes behave like block-level, table cell, and inline-block boxes as per CSS 2.1, section 10.1, item 2 [CSS21]. However, column boxes do not establish block container boxes for elements with ''position: fixed or position: absolute''.
img { display: block; width: 100% }
Given that the width is calculated relative to the column box, the image will be as wide as the column box:
Floats that appear inside multi-column layouts are positioned with regard to the column box where the float appears.
img { display: block; float: right }
The black box represents the image.
A multi-column element establishes a new block formatting context, as per CSS 2.1 section 9.4.1.
Nested multi-column elements are allowed, but there may be implementation-specific limits.
Note: It is not possible to set properties/values on column boxes. For example, the background of a certain column box cannot be set and a column box has no concept of padding, margin or borders. Future specifications may add additional functionality. For example, columns of different widths and different backgrounds may be supported.
Note: Multicol elements with column heights larger than the viewport may pose accessibility issues.
Finding the number and width of columns is fundamental when laying out multi-column content. These properties are used to set the number and width of columns:
A third property, columns, is a shorthand property which sets both column-width and column-count.
Other factors, such as explicit column breaks, content, and height constraints, may influence the actual number and width of columns.
| Name: | column-width |
|---|---|
| Value: | auto | <length> |
| Initial: | auto |
| Applies to: | non-replaced block-level elements (except table elements), table cells, and inline-block elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | the absolute length, zero or larger |
| Percentages: | N/A |
| Animatable: | as <length> |
This property describes the width of columns in multicol elements.
div {
width: 100px;
column-width: 45px;
column-gap: 0;
column-rule: none;
}
There is room for two 45px wide columns inside the 100px wide element. In order to fill the available space the actual column width will be increased to 50px.
div {
width: 40px;
column-width: 45px;
column-gap: 0;
column-rule: none;
}
The available space is smaller than the specified column width and the actual column width will therefore be decreased.
To ensure that column-width can be used with vertical text, column width means the length of the line boxes inside the columns.
Note: The reason for making column-width somewhat flexible is to achieve scalable designs that can fit many screen sizes. To set an exact column width, the column gap and the width of the multicol element (assuming horizontal text) must also be specified.
| Name: | column-count |
|---|---|
| Value: | auto | <integer> |
| Initial: | auto |
| Applies to: | non-replaced block-level elements (except table elements), table cells, and inline-block elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
| Animatable: | as <integer> |
This property describes the number of columns of a multicol element.
body { column-count: 3 }
| Name: | columns |
|---|---|
| Value: | <‘column-width’> || <‘column-count’> |
| Initial: | see individual properties |
| Applies to: | see individual properties |
| Inherited: | see individual properties |
| Media: | see individual properties |
| Computed value: | see individual properties |
| Percentages: | see individual properties |
| Animatable: | see individual properties |
This is a shorthand property for setting column-width and column-count. Omitted values are set to their initial values.
columns: 12em; /* column-width: 12em; column-count: auto */ columns: auto 12em; /* column-width: 12em; column-count: auto */ columns: 2; /* column-width: auto; column-count: 2 */ columns: 2 auto; /* column-width: auto; column-count: 2 */ columns: auto; /* column-width: auto; column-count: auto */ columns: auto auto; /* column-width: auto; column-count: auto */
The pseudo-algorithm below determines the used values for column-count (N) and column-width (W) when . There is one other variable in the pseudo-algorithm: U is the used width of the multi-column element.
Note: The used width U of the multi-column element can depend on the element’s contents, in which case it also depends on the computed values of the column-count and column-width properties. This specification does not define how U is calculated. Another module (probably the Basic Box Model [CSS3BOX] or the Intrinsic & Extrinsic Sizing Module [CSS3-SIZING]) is expected to define this.
The floor(X) function returns the largest integer Y ≤ X.
(01) if ((column-width = auto) and (column-count = auto)) then (02) exit; /* not a multicol element */ (03) if column-width = auto then (04) N := column-count (05) else if column-count = auto then (06) N := max(1, (07) floor((U + column-gap)/(column-width + column-gap))) (08) else (09) N := min(column-count, max(1, (10) floor((U + column-gap)/(column-width + column-gap))))
And:
(11) W := max(0, ((U + column-gap)/N - column-gap))
In paged media, user agents may perform this calculation on a per-page basis.
The used value for column-count is calculated without regard for explicit column breaks or constrained column heights, while the actual value takes these into consideration.
div { width: 40em; columns: 20em; column-gap: 0 }
p { break-after: column }
<div>
<p>one
<p>two
<p>three
</div>
The computed column-count is auto, the used column-count is 2 and the actual column-count is 3.
div {
width: 80em;
height: 10em;
columns: 20em;
column-gap: 0;
column-fill: auto;
}
<div>foo</div>
The computed column-count is auto, the used column-count is 4, and the actual column-count is 1.
All column boxes in a multi-column element are in the same stacking context and the drawing order of their contents is as specified in CSS 2.1. Column boxes do not establish new stacking contexts.
Column gaps and rules are placed between columns in the same multicol element. The length of the column gaps and column rules is equal to the column height. Column gaps take up space. That is, column gaps will push apart content in adjacent columns (within the same multicol element).
A column rule is drawn in the middle of the column gap with the endpoints at opposing content edges of the multicol element. Column rules do not take up space. That is, the presence or thickness of a column rule will not alter the placement of anything else. If a column rule is wider than its gap, the adjacent column boxes will overlap the rule, and the rule may possibly extend outside the box of the multicol element. Column rules are painted in the inline content layer, but below all inline content inside the multicol element. Column rules are only drawn between two columns that both have content.
| Name: | column-gap |
|---|---|
| Value: | <length> | normal |
| Initial: | normal |
| Applies to: | multicol elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | absolute length or normal |
| Percentages: | N/A |
| Animatable: | as <length> |
The <length> cannot be negative.
| Name: | column-rule-color |
|---|---|
| Value: | <color> |
| Initial: | currentcolor |
| Applies to: | multicol elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | same as the computed value of color is computed |
| Percentages: | N/A |
| Animatable: | as <color> |
| Name: | column-rule-style |
|---|---|
| Value: | <‘border-style’> |
| Initial: | none |
| Applies to: | multicol elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
| Animatable: | no |
The column-rule-style property sets the style of the rule between columns of an element. The <‘border-style’> values are interpreted as in the collapsing border model.
The none value forces the computed value of column-rule-width to be 0.
| Name: | column-rule-width |
|---|---|
| Value: | <‘border-width’> |
| Initial: | medium |
| Applies to: | multicol elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | absolute length; 0 if the column rule style is none or hidden |
| Percentages: | N/A |
| Animatable: | as <length> |
This property sets the width of the rule between columns. Negative values are not allowed.
| Name: | column-rule |
|---|---|
| Value: | <‘column-rule-width’> || <‘column-rule-style’> || <‘column-rule-color’> |
| Initial: | see individual properties |
| Applies to: | see individual properties |
| Inherited: | see individual properties |
| Media: | see individual properties |
| Computed value: | see individual properties |
| Percentages: | see individual properties |
| Animatable: | see individual properties |
This property is a shorthand for setting column-rule-width, column-rule-style, and column-rule-color at the same place in the style sheet. Omitted values are set to their initial values.
body {
column-gap: 1em;
column-rule-width: 1em;
column-rule-style: solid;
column-rule-color: black;
}
When content is laid out in multiple columns, the user agent must determine where column breaks are placed. The problem of breaking content into columns is similar to breaking content into pages, which is described in CSS 2.1, section 13.3.3 [CSS21].
Three new properties are introduced to allow column breaks to be described in the same properties as page breaks: break-before, break-after, and break-inside. These properties take the same values as page-break-before, page-break-after, and page-break-inside [CSS21]. In addition, some new keyword values are added.
| Name: | break-before |
|---|---|
| Value: | auto | always | avoid | left | right | page | column | avoid-page | avoid-column |
| Initial: | auto |
| Applies to: | block-level elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
| Name: | break-after |
|---|---|
| Value: | auto | always | avoid | left | right | page | column | avoid-page | avoid-column |
| Initial: | auto |
| Applies to: | block-level elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
| Name: | break-inside |
|---|---|
| Value: | auto | avoid | avoid-page | avoid-column |
| Initial: | auto |
| Applies to: | block-level elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
These properties describe page/column break behavior before/after/inside the generated box. These values are normatively defined in [CSS21]:
This specification adds the following new values:
When a page or column break splits a box, the box’s margins, borders, and padding have no visual effect where the split occurs. However, the margin immediately after a forced page/column break will be preserved. A forced page/column break is a break that does not occur naturally.
Note: In the future, new properties may describe alternate ways to handle margins, borders and padding around page/column breaks.
h2
elements and after img elements:
.multicol { column-width: 8em }
.multicol h2 { break-before: column; margin-top: 2em }
.multicol img { break-after: column }
The top margin of h2 elements will be preserved since the column break is forced.
p elements:
p { break-inside: avoid-column }
The column-span property makes it possible for an element to span across several columns.
| Name: | column-span |
|---|---|
| Value: | none | all |
| Initial: | none |
| Applies to: | in-flow block-level elements |
| Inherited: | no |
| Media: | visual |
| Computed value: | specified value |
| Percentages: | N/A |
This property describes how many columns an element spans across. Values are:
An element that spans more than one column is called a spanning element and the box it creates is called a spanner.
h2 element has been added to the
sample document after the sixth sentence (i.e., after the word "jkl."). This styling applies:
h2 { column-span: all; background: silver }
By setting column-span to all, all content that appear before
the h2 element is shown before the h2
element.
A spanning element takes up more space than the element would take up otherwise. When space is limited, it may be impossible to find room for the spanning element. In these cases, user agents may treat the element as if none had been specified on this property.
H2 element appears after the fourth paragraph.
This would appear on the first page:
This would appear on the second page:
h2 {
margin: 0.5em 0;
column-span: all;
background: silver
}
p { margin-top: 1em }
There are two strategies for filling columns: columns can either be balanced, or not. If columns are balanced, user agents should try to minimize variations in column height, while honoring forced breaks, widows and orphans, and other properties that may affect column heights. If columns are not balanced, they are filled sequentially; some columns may end up partially filled, or with no content at all.
| Name: | column-fill |
|---|---|
| Value: | auto | balance | balance-all |
| Initial: | balance |
| Applies to: | multicol elements |
| Inherited: | no |
| Media: | see below |
| Computed value: | specified value |
| Percentages: | N/A |
The values are:
In continuous media, this property does not have any effect in overflow columns.
article { width: 60em; height: auto; columns: 4; column-fill: balance }
article { width: 60em; height: auto; columns: 4; column-fill: auto }
As a result, the first column is filled with all content:
article { width: 60em; height: auto; columns: 4; column-fill: balance }
p { break-after: column }
The shortest column height possible contains five lines of text. After the column height has been established, columns are filled sequentially. As a result, the third column is as high as the first two columns, while the last column ends up being significantly shorter.
article { width: 60em; height: auto; columns: 4; column-fill: balance }
In this example, an article starts with an unbreakable figure which sets the column height. Subsequent content is filled sequentially into the remaining columns:
Floated or in-flow content that extends into column gaps or neighboring columns — e.g., long words or images — is not clipped and may therefore cause overflow.
Content and column rules that extend outside column boxes at the edges of the multi-column element are clipped according to the overflow property.
A multicol element can have more columns than it has room for due to:
Columns that appear outside the multicol element in continuous media are called overflow columns.
div {
max-height: 5em;
overflow: visible;
}
As a result, the number of columns is increased.
Assuming column balancing, this would appear on the second page:
p {
break-after: column;
}
As a result, the number of columns increases and the extra columns are added in the inline direction:
This would appear on the second page:
Due to column balancing, the last paragraph is split across three columns.
This document is based on several older proposals and comments on older proposals. Contributors include:
Alex Mogilevsky, Andy Clarke, Anton Prowse, Bert Bos, Björn Höhrmann, Cédric Savarese, Chris Lilley, Chris Wilson, Daniel Glazman and Dave Raggett, David Hyatt, David Singer, David Woolley, Elika Etemad, Giovanni Campagna, Ian Hickson. Joost de Valk, Kevin Lawver, L. David Baron, Markus Mielke, Melinda Grant, Michael Day, Øyvind Stenhaug, Peter Linss, Peter-Paul Koch, Robert O’Callahan, Robert Stevahn, Sergey Genkin, Shelby Moore, Steve Zilles, Sylvain Galineau, Tantek Çelik, Till Halbach,
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 to this specification is defined for three conformance classes:
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.
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.
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.
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.
| Name | Value | Initial | Applies to | Inh. | %ages | Media | Animatable | Computed value |
|---|---|---|---|---|---|---|---|---|
| column-width | auto | <length> | auto | non-replaced block-level elements (except table elements), table cells, and inline-block elements | no | N/A | visual | as <length> | the absolute length, zero or larger |
| column-count | auto | <integer> | auto | non-replaced block-level elements (except table elements), table cells, and inline-block elements | no | N/A | visual | as <integer> | specified value |
| columns | <‘column-width’> || <‘column-count’> | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties |
| column-gap | <length> | normal | normal | multicol elements | no | N/A | visual | as <length> | absolute length or normal |
| column-rule-color | <color> | currentcolor | multicol elements | no | N/A | visual | as <color> | same as the computed value of color is computed |
| column-rule-style | <‘border-style’> | none | multicol elements | no | N/A | visual | no | specified value |
| column-rule-width | <‘border-width’> | medium | multicol elements | no | N/A | visual | as <length> | absolute length; 0 if the column rule style is none or hidden |
| column-rule | <‘column-rule-width’> || <‘column-rule-style’> || <‘column-rule-color’> | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties | see individual properties |
| break-before | auto | always | avoid | left | right | page | column | avoid-page | avoid-column | auto | block-level elements | no | N/A | visual | specified value | |
| break-after | auto | always | avoid | left | right | page | column | avoid-page | avoid-column | auto | block-level elements | no | N/A | visual | specified value | |
| break-inside | auto | avoid | avoid-page | avoid-column | auto | block-level elements | no | N/A | visual | specified value | |
| column-span | none | all | none | in-flow block-level elements | no | N/A | visual | specified value | |
| column-fill | auto | balance | balance-all | balance | multicol elements | no | N/A | see below | specified value |