Title: CSS Multi-column Layout Module Level 1
Group: CSSWG
Shortname: css-multicol
Level: 1
Status: ED
Work Status: Testing
ED: https://drafts.csswg.org/css-multicol/
TR: https://www.w3.org/TR/css-multicol-1/
Previous Version: https://www.w3.org/TR/2011/CR-css3-multicol-20110412/
Previous Version: https://www.w3.org/TR/2009/CR-css3-multicol-20091217/
Previous Version: https://www.w3.org/TR/2009/WD-css3-multicol-20090630/
Previous Version: https://www.w3.org/TR/2007/WD-css3-multicol-20070606/
Previous Version: https://www.w3.org/TR/2005/WD-css3-multicol-20051215/
Previous Version: https://www.w3.org/TR/2001/WD-css3-multicol-20010118/
Previous Version: http://www.w3.org/1999/06/WD-css3-multicol-19990623
Editor: Håkon Wium Lie, Opera Software, howcome@opera.com
Editor: Florian Rivoal, On behalf of Bloomberg, https://florian.rivoal.net, w3cid 43241
Editor: Rachel Andrew, Invited Expert, https://rachelandrew.co.uk, w3cid 81117
Issue Tracking: Disposition of Comments https://drafts.csswg.org/css-multicol-1/issues
Abstract: 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.
Link Defaults: css-color (property) color, css21 (property) max-height, css-backgrounds-3 (value) hidden
At Risk: column-gap accepting <> instead of <>
spec:css22; type:dfn; text: table wrapper box
Introduction
(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.
In these examples, the number of columns, the width of columns, and
both the number and width are set, respectively:
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.
In this example, the shorthand 'column-rule' declaration from the
above example has been expanded:
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.
In this example, columns are set to be balanced, i.e., to have
approximately the same length. Also,
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.
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.
The multi-column model
A multi-column container
(or multicol container for short)
is an element whose 'column-width' or 'column-count'
property is not ''column-width/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 container is flowed into its column
boxes.
Column boxes in a multi-column container are arranged
into rows. Like table cells, the column boxes in a row are
ordered in the inline direction of the multicol container. 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 container,
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 container will contain only one row
of columns, and the height of each column will be equivalent to the
used height of the multi-column container's content box.
Column gaps (yellow) and column rules (green) are shown in this
sample rendition of a multi-column container with padding (blue). The
blue and yellow is present for illustrational purposes only. In actual
implementations these areas will be determined by the background.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
Pqr stu vw xyz.
If the multi-column container 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 container: 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.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
def g hij klm nopqrs
tuv wxy z. Abc de fg
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
A spanning element
Column boxes are block container boxes. The multi-column container is the principal box, and column boxes are anonymous.
Note: Column boxes do not become the containing block for elements with ''position: fixed'' or ''position: absolute''. The containing block is the multicol element, it being the principal box.
In this example, the multi-column container has ''position: relative'' thus becoming the containing block. The image is a direct child of the multi-column container and has ''position: absolute''. It takes positioning from the multi-column container and not from the column box.
.container {
position: relative;
column-count: 3;
}
img {
position: absolute;
top: 20px;
left: 40px;
}
In this example, the width of the image is set with these rules:
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:
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
Floats that appear inside multi-column layouts are positioned with
regard to the column box where the float appears.
In this example, this CSS fragment describes the presentation of the image:
img { display: block; float: right }
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g
hij klm
nopq
rs tuv
wxy x
yz. Ab
cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
The black box represents the image.
A multi-column container establishes a new block formatting context,
as per CSS 2.1 section 9.4.1.
A top margin set on the first child element of a multicol container will not collapse with the margins of the multicol container.
Nested multi-column containers 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 containers with column heights larger than the viewport may pose accessibility issues.
The number and width of columns
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:
- 'column-count'
- 'column-width'
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.
'column-width'
Name: column-width
Value: auto | <>
Initial: auto
Applies to: block containers except table wrapper boxes
Inherited: no
Percentages: N/A
Media: visual
Computed value: the absolute length, zero or larger
Animatable: as <>
This property describes the width of columns in multicol containers.
- auto
-
means that the column width will be determined by other properties
(e.g., 'column-count', if it has a non-auto value).
- <>
-
describes the optimal column width. The actual column width may be
wider (to fill the available space), or narrower (only if the
available space is smaller than the specified column width). Specified values
must be greater than 0.
For example, consider this style sheet:
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.
Also, consider this style sheet:
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.
'column-count'
Name: column-count
Value: auto | <>
Initial: auto
Applies to: block containers except table wrapper boxes
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value
Animatable: as <>
This property describes the number of columns of a multicol container.
- auto
-
means that the number of columns will be determined by other properties
(e.g., 'column-width', if it has a non-auto value).
- <>
-
describes the optimal number of columns into which the content of
the element will be flowed. Values must be greater than 0. If both
'column-width' and 'column-count' have non-auto values, the integer
value describes the maximum number of columns.
Example:
body { column-count: 3 }
'columns'
Name: columns
Value: <<'column-width'>> || <<'column-count'>>
Initial: see individual properties
Applies to: see individual properties
Inherited: see individual properties
Percentages: see individual properties
Media: see individual properties
Computed value: 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.
Here are some valid declarations using the 'columns' property:
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 */
Pseudo-algorithm
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 container 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 container */
(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))
For the purpose of finding the number of auto-repeated tracks, the UA must floor the track size to a UA-specified value to avoid division by zero. It is suggested that this floor be 1px or less.
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.
In this example, the actual column-count is higher than the used column-count due to explicit column breaks:
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.
The actual column-count may be lower than the used column-count. Consider this example:
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.
Stacking context
All column boxes in a multi-column container 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
Column gaps and rules are placed between columns in the same
multicol container. 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 container).
A column rule is drawn in the middle of the column gap with the
endpoints at opposing content edges of the multicol container. 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
container. Column rules are painted just above the border of the multicol element. For scrollable multicol elements, note that while the border and background of the multicol element obviously aren't scrolled, the rules need to scroll along with the columns. Column rules are
only drawn between two columns that both have content.
'column-gap'
Name: column-gap
Value: <> | normal
Initial: normal
Applies to: multicol containers
Inherited: no
Percentages: refer to the content width of the multi-column container
Media: visual
Computed value: as specified, with <>s made absolute
Animation type: length, percentage, or calc
'column-gap' accepting <> is at risk,
and may be reverted to <>.
- <>
-
Specifies the gap between columns.
If there is a column rule between columns,
it will appear in the middle of the gap.
The <> or <> cannot be negative.
- normal
-
Identical to <length-percentage>,
but with a UA-specified length.
A value of ''1em'' is suggested.
'column-rule-color'
Name: column-rule-color
Value: <>
Initial: currentcolor
Applies to: multicol containers
Inherited: no
Percentages: N/A
Media: visual
Computed value: same as the computed value of 'color' is computed
Animatable: as <>
- <>
-
Specifies the color of the column rule.
'column-rule-style'
Name: column-rule-style
Value: <>
Initial: none
Applies to: multicol containers
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value
Animatable: no
The 'column-rule-style' property sets the style of the rule between columns of an element.
The <> values are interpreted as in the collapsing border model.
The ''border-style/none'' value forces the computed value of 'column-rule-width' to be ''0''.
'column-rule-width'
Name: column-rule-width
Value: <>
Initial: medium
Applies to: multicol containers
Inherited: no
Percentages: N/A
Media: visual
Computed value: absolute length; ''0'' if the column rule style is ''border-style/none'' or ''hidden''
Animatable: as <>
This property sets the width of the rule between columns.
Negative values are not allowed.
'column-rule'
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
Percentages: see individual properties
Media: see individual properties
Computed value: 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.
In this example, the column rule and the column gap have the same
width. Therefore, they will occupy exactly the same space.
body {
column-gap: 1em;
column-rule-width: 1em;
column-rule-style: solid;
column-rule-color: black;
}
Column breaks
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'.
'break-before', 'break-after', 'break-inside'
'break-before', 'break-after', and 'break-inside'
are defined in [[!CSS3-BREAK]].
Spanning columns
The 'column-span' property makes it possible for an element to span across several columns.
'column-span'
Name: column-span
Value: none | all
Initial: none
Applies to: in-flow block-level elements
Inherited: no
Percentages: N/A
Media: visual
Computed value: specified value
This property describes how many columns an element spans across. Values are:
- none
-
The element does not span multiple columns.
- all
-
The element spans across all columns of the nearest multicol
ancestor in the same block formatting context.
Content in the normal flow that appears before the
element is automatically balanced across all columns before the
element appears.
The element establishes a new formatting context.
Note: Whether the element establishes a new formatting context
does not depend on whether the element is a descendent of a multicol or not.
When 'column-span' is ''column-span/all'', it always does.
This helps with robustness of designs to later revisions
that remove the multicol,
or when media queries turn the multicol off in some situations.
An element that spans more than one column is called a
spanning element and the box it creates is called a spanner.
In this example, an
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 ''column-span/all'', all content that appear before
the
h2
element is shown before the
h2
element.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
def g hij klm nopqrs
tuv wxy z. Abc de fg
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
An 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 ''column-span/none'' had been specified on this property.
In this example, the
H2 element appears later in the content, and the height of the
multicol container is constrained. Therefore, the H2 element appears in
the overflow and there is not room to make the element spanning.
As a result, the element appears as if 'column-span: none' was
specified.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
An H2 element
A bc def g hij klm
nopqrs tuv wxy z.
This example is similar to the previous example,
except that the H2 element appears naturally in the last column.
Still, there is not enough room to make the element spanning.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno.
An H2 element
A bc def g hij klm
nop w rstu vw xyz.
In paged media spanning elements are honored on all pages.
In this example, the first three paragraphs have column breaks after them.
An spanning
H2
element appears after the fourth paragraph.
This would appear on the first page:
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z.
Ab cde fgh i jkl mno.
Pq rstu vwxyz.
This would appear on the second page:
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
def g hij klm nopqrs
tuv wxy z. Abc de fg
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
An H2 element
Spanners create new block formatting contexts, but their margins
can be changed by their surroundings. In this example, two spanners
naturally end up at the top of a page. The top margin of the first
spanner is truncated due to adjoining an unforced break. The margins
between the two spanners collapse with each other. However, the bottom
margin of the second spanner does not collapse with the top margin of
the subsequent element.
h2 {
margin: 0.5em 0;
column-span: all;
background: silver
}
p { margin-top: 1em }
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
An H2 element
Another H2 element
Filling columns
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.
'column-fill'
Name: column-fill
Value: auto | balance | balance-all
Initial: balance
Applies to: multicol containers
Inherited: no
Percentages: N/A
Media: see below
Computed value: specified value
The values are:
- balance
-
Balance content equally between columns, as far as possible.
In paged media, only the last page is balanced.
- balance-all
-
Balance content equally between columns, as far as possible.
In paged media, all pages are balanced.
- auto
-
fill columns sequentially
In continuous media, this property does not have any effect in
overflow columns.
In this example, an article only has one short paragraph which fits
on three lines. The three lines are displayed in three different
columns due to column balancing.
article { width: 60em; height: auto; columns: 4; column-fill: balance }
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm.
In this example, column balancing is turned off:
article { width: 60em; height: auto; columns: 4; column-fill: auto }
As a result, the first column is filled with all content:
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm.
In this example, an article has two paragraphs: first a long one, then a shorter one. This code is applied:
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.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
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:
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno.
Overflow
Overflow inside multicol containers
Except for cases where this would cause a column break,
content that extends outside column boxes
visibly overflows and is not clipped to the column box.
Note: See
[[#column-breaks]] for column breaks
and
[[#pagination-and-overflow-outside-multicol]] for whether it is clipped to the multi-column container’s content box.
In this example, the image is wider than the column:
Lorem ipsum dolor
sit amet. Nam at jus.
Sed imp er di et ris.
Cur abi tur et sapen.
Lorem ipsum dolor
sit amet. Nam at jus.
Sed imp er di et ris.
Cur abi tur et sapen.
Vivamus a metus.
Aenean at risus
pharetra ante
luctu
feugiat quis enim.
Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor
sit amet. Nam at jus.
Sed imp er di et ris.
Cur abi tur et sapen.
Vivamus a metus.
Aenean at risus
pharetra ante
luctu
feugiat quis enim.
Cum sociis natoque
penatibus et magni.
Pagination and overflow outside multicol containers
Content and column rules that extend outside column boxes at
the edges of the multi-column container are clipped according to the
'overflow' property.
A multicol container can have more columns than it has room for due to:
-
a declaration that constrains the column height (e.g., using
'height' or 'max-height'). In this case, additional column boxes
are created in the inline direction
-
the size of the page. In this case, additional column boxes are
moved to the next page(s).
-
explicit column breaks. In this case, additional column boxes are
created in the inline direction for continuous media, and
additional column boxes are moved to the next page(s) for paged
media.
Columns that appear outside the multicol container in continuous media
are called overflow columns.
In this example, the height of the multi-column container has been
constrained to a maximum height. Also, the style sheet specifies that
overflowing content should be visible:
div {
max-height: 5em;
overflow: visible;
}
As a result, the number of columns is increased.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
In paged media, the overflow content goes into column on subsequent pages.
Given the same content as in the previous example
and a page box that only has room for five lines of formatted text,
this would appear on the first page:
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
Assuming column balancing, this would appear on the second page:
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
In this example, explicit column breaks are generated after paragraphs:
p {
break-after: column;
}
As a result, the number of columns increases and the extra columns
are added in the inline direction:
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxyz. Abc defghi
jklmno pqrstu vwxyz.
Ab cde fgh i jkl mno.
Pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z.
In paged media, extra columns are shown on the next page.
Given the same code as the previous example,
the last paragraph appears on the second page.
This would appear on the first page:
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxyz. Abc defghi
jklmno pqrstu vwxyz.
Ab cde fgh i jkl mno.
This would appear on the second page:
Pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z.
Due to column balancing, the last paragraph is split across three columns.
Appendix B. Changes
This appendix is informative.
- Changed the sentence Column rules are painted in the inline content layer, but below all inline content inside the multicol element. to Column rules are painted just above the border of the multicol element. For scrollable multicol elements, note that while the border and background of the multicol element obviously aren’t scrolled, the rules need to scroll along with the columns. Resolved: 7 Nov 2017
- Under section The Multi-column Model, removed two sentences 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''.. THese were replaced with a clarification about the principal box and a new example showing how abspos elements refer to the multicol container. Resolved: 7 Nov 2017
- Removed the sentence "To indicate where column breaks should (or should not) appear, new keyword values are introduced." and following example (Example 7 in the WD published 5 Oct 2017) as the multicol specification no longer introduces these properties. Editorial
- Changed how we reference the element we have applied multicol to from multi-column or multicol element to multi-column or multicol container. Resolved: 22 November 2017
- Removed the example which stated "If a tall image is moved to a column on the next page to find room for it, its natural column may be left empty. If so, the column is still considered to have content for the purpose of deciding if the column rule should be drawn." Resolved: 7 September 2017
- Added July 2016 resolution to change the the track size floor to a required UA-specified value, consistent with the CSS Grid spec.
- Remove the restriction about overflow columns only being in continuous media in the statement that 'column-fill' has no effect on overflow columns. Resolved: September 2013.
- Added keyword balance-all and examples to demonstrate how this should work. Resolved: September 2013.
- The pseudo-algorithm has been revised on a number of occasions. Latest change Feb 2013.
- Clarified that properties 'columns', 'column-width', 'column-count' "apply to block containers". Ref: Feb 2013.
- Breaking properties have beeen moved from this specification to the CSS Fragmentation Module.
- Change to 'column-fill' wording to clarify that 'column-fill' is honored before page breaks. Ref: Jan 2012.
- Amended example and text to clarify what happens with margin collapsing and spanning elements. Ref: Oct 2013.
- Clarification that 'column-rule-width' does not alter the size or placement of columns. Ref: Sep 2013.
- Added that each column spanning element establishes a separate BFC margins between them collapse. Ref: Dec 2011.
- Column rules are painted in the inline content layer, but below all inline content inside the multicol. Ref: Feb 2013.
- Clarify that 'column-span' causes the element to establish a formatting context even if it is not in a multicol.
- Column spanners do not always establish a block formatting context.
- Allow 'column-gap' to accept <> instead of just <>
- 'column-width' and 'column-count' applies to block containers except table wrapper boxes.
- Content that overflows columns is not clipped.
Acknowledgments
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,