(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.
Other layout methods in CSS,
when applied to a parent element,
change the display properties of the direct children.
For example if a three column grid layout is created,
the direct children of the [=grid container=] become [=grid items=]
and are placed into the column tracks,
one element per cell with additional rows created as needed.
The child elements of a [=multi-column container=] however continue in normal flow,
that flow is arranged into a number of columns.
These columns have a flexible inline size,
and therefore respond to available space
by changing the size or number of columns displayed.
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 }
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:
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 }
multicol-fill-balance-029.html
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.
Column gaps (diagonal hatching) and column rules
are shown in this sample rendition of a multi-column container
with padding (cross hatching).
The hatched areas are present for illustrational purposes only.
In actual implementations these areas will be determined by the background,
the second image shows a rendering of a [=multi-column container=] with column-rules.
A multi-column layout with the non-visible column-span and padding inside the multicol container highlighted.The same layout as in the first image, as it would be displayed by an implementation.
Value Definitions
This specification follows the CSS property definition conventions from [[!CSS21]]
using the value definition syntax from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Combination with other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the CSS-wide keywords as their property value.
For readability they have not been repeated explicitly.
The Multi-Column Model
An element whose 'column-width' or 'column-count' property is not ''column-width/auto''
establishes a multi-column container
(or multicol container for short),
and therefore acts as a container for [=multi-column layout=].
multicol-basic-002.html
multicol-basic-004.html
multicol-count-computed-004.xht
inheritance.html
multicol-scroll-content.html
multicol-zero-height-001.xht
multicol-zero-height-002.html
multicol-zero-height-003.html
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 [=fragmentation context=]
formed of anonymous [=fragmentation containers=]
called column boxes
(or columns for short).
These [=column boxes=] establish
an independent [=block formatting context=]
into which the multi-column container's content flows,
and form the [=containing block=] for its non-positioned children.
In this example, the width of the image is set with these rules:
img {
display: block;
width: 100%;
}
Given that the column box creates a new [=block formatting context=],
the 'width' is calculated relative to the column box.
Therefore the image will not overflow the column box:
The image is constrained by the column box that it is displayed in.
Given that the column box creates a new [=block formatting context=], a top margin set on the first child element of a multicol container will not collapse with the margins of the multicol container.
The margin above the first paragraph has not collapsed, leaving a ''1em'' margin above the first line in the multicol container.
multicol-margin-001.xht
multicol-margin-002.xht
multicol-margin-003.html
multicol-margin-child-001.xht
multicol-nested-margin-001.xht
multicol-nested-margin-002.xht
multicol-nested-margin-003.xht
multicol-nested-margin-004.xht
multicol-nested-margin-005.xht
multicol-collapsing-001.xht
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;
}
In the HTML, the image appears after the sentence ending, "the leg of a chicken".
The image is floated inside the column box it appears in.
Content overflowing a [=column box=] in the [=block axis=]
[=fragments=] and continues in the next [=column box=].
Note: Column boxes, which are [=anonymous boxes=],
do not become the [=containing block=]
for [=absolutely positioned boxes=].
The 'position' property, which establishes a containing block for such boxes,
applies to the [=multicol container=], it being the [=principal box=].
multicol-containing-001.xht
multicol-containing-002.xht
multicol-containing-003.html
multicol-contained-absolute.html
abspos-autopos-contained-by-viewport-000.html
abspos-autopos-contained-by-viewport-001.html
abspos-multicol-in-second-outer-clipped.html
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=].
The figure demonstrates that the absolutely positioned image is positioned by reference to the multicol container and not the column box.
Out-of-flow descendants of a [=multi-column container=] do affect column balancing,
and the block-size of the [=multi-column container=].
multicol-oof-inline-cb-001.html
multicol-oof-inline-cb-002.html
The column boxes are ordered
in the [=inline base direction=] of the multicol container
and arranged into multicol lines.
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 line have the same column width,
and all column boxes in a line have the same column height.
baseline-000.html
baseline-001.html
baseline-002.html
baseline-003.html
baseline-004.html
baseline-005.html
baseline-006.html
baseline-007.html
baseline-008.html
crashtests/as-baseline-aligned-grid-item.html
multicol-list-item-001.xht
multicol-list-item-002.html
multicol-list-item-003.html
multicol-list-item-004.html
multicol-list-item-005.html
multicol-list-item-006.html
multicol-list-item-007.html
multicol-list-item-008.html
balance-grid-001.html
table/multicol-table-cell-001.xht
table/multicol-table-cell-height-001.xht
table/multicol-table-cell-height-002.xht
table/multicol-table-cell-vertical-align-001.xht
table/table-cell-as-multicol.html
table/table-cell-content-change-000.html
table/table-cell-content-change-001.html
table/table-cell-multicol-nested-001.html
table/table-cell-multicol-nested-002.html
table/table-cell-multicol-nested-003.html
crashtests/break-before-multicol-caption.html
crashtests/table-cell-writing-mode-root.html
table/balance-breakafter-before-table-section-crash.html
table/balance-table-with-border-spacing.html
table/balance-table-with-fractional-height-row.html
float-and-block.html
move-with-text-after-paint.html
resize-with-text-after-paint.html
animation/column-width-interpolation.html
animation/discrete-no-interpolation.html
multicol-overflow-positioned-transform-001.html
multicol-overflow-transform-001.html
resize-multicol-with-fixed-size-children.html
resize-in-strict-containment-nested.html
remove-child-in-strict-containment-also-spanner.html
composited-under-clip-under-multicol.html
change-intrinsic-width.html
change-fragmentainer-size-000.html
change-fragmentainer-size-001.html
change-fragmentainer-size-002.html
change-fragmentainer-size-003.html
hit-test-child-under-perspective.html
hit-test-transformed-child.html
crashtests/multicol-with-monolithic-oof-with-multicol-with-oof.html
crashtests/chrome-bug-1293905.html
crashtests/chrome-bug-1297118.html
crashtests/chrome-bug-1301281.html
crashtests/chrome-bug-1303256.html
crashtests/chrome-bug-1314866.html
crashtests/dynamic-simplified-layout-break-propagation.html
crashtests/float-multicol-crash.html
change-abspos-width-in-second-column-crash.html
change-out-of-flow-type-and-remove-inner-multicol-crash.html
crashtests/monolithic-oof-in-clipped-container.html
crashtests/move-linebreak-to-different-column.html
crashtests/move-newline-pre-text.html
crashtests/multicol-at-page-boundary-print.html
crashtests/multicol-block-in-inline-crash.html
crashtests/multicol-cached-consumed-bsize-crash.html
crashtests/multicol-column-change-crash.html
crashtests/multicol-dynamic-contain-crash.html
crashtests/multicol-dynamic-transform-crash.html
crashtests/multicol-floats-in-ifc.html
crashtests/multicol-parallel-flow-after-spanner-in-inline.html
crashtests/outline-move-oof-with-inline.html
crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html
crashtests/size-containment-become-multicol-add-inline-child.html
crashtests/sticky-in-abs-in-sticky.html
crashtests/vertical-rl-column-rules-wide-columns.html
dynamic-become-multicol-add-oof-inside-inline-crash.html
extremely-tall-multicol-with-extremely-tall-child-crash.html
file-control-crash.html
img-alt-as-multicol-crash.html
overflow-scroll-in-multicol-crash.html
remove-block-sibling-of-inline-with-block-crash.html
subpixel-scroll-crash.html
text-child-crash.html
with-custom-layout-on-same-element-crash.https.html
crashtests/oof-in-area-001.html
crashtests/oof-in-area-002.html
crashtests/oof-in-area-003.html
crashtests/oof-in-oof-multicol-in-multicol-spanner-in-multicol.html
crashtests/oof-in-oof-multicol-in-relpos-in-oof-in-multicol-in-multicol.html
crashtests/oof-in-oof-multicol-in-relpos-spanner-in-multicol-in-relpos-multicol-in-multicol.html
crashtests/oof-in-oof-multicol-in-relpos-spanner-in-spanner-multicol-in-multicol-in-multicol.html
crashtests/oof-in-oof-multicol-in-spanner-in-multicol-in-spanner-in-nested-multicol.html
crashtests/oof-in-oof-multicol-in-spanner-in-nested-multicol.html
crashtests/oof-in-relpos-in-oof-multicol-in-oof-in-relpos-in-oof-multicol-in-multicol.html
crashtests/oof-in-relpos-in-oof-multicol-in-relpos-in-oof-multicol-in-relpos-multicol.html
crashtests/floated-input-in-inline-next-column.html
crashtests/inline-float-parallel-flow.html
crashtests/table-caption-in-clipped-overflow.html
crashtests/text-in-inline-interrupted-by-float.html
increase-prev-sibling-height.html
crashtests/interleaved-bfc-crash.html
crashtests/relayout-fixedpos-in-abspos-in-relpos-in-nested-multicol.html
crashtests/inline-become-oof-container-make-oof-inflow.html
multicol-dynamic-change-inside-break-inside-avoid-001.html
multicol-dynamic-add-001.html
scroll-width-height.tentative.html
filter-with-abspos.html
crashtests/add-list-item-marker.html
auto-fill-auto-size-001-print.html
auto-fill-auto-size-002-print.html
multicol-height-002-print.xht
named-page.html
page-property-ignored.html
Note: In text set using a vertical writing mode,
the block direction runs horizontally.
In a vertical writing mode columns are laid out horizontally,
and the direction of the flow of blocks may be right to left, or left to right.
The 'column-width' property therefore refers to the inline size of the column,
and not the physical horizontal width.
A diagram showing the different ways columns may be arranged due to writing mode.
From left to right: horizontal-tb, vertical-rl, vertical-lr.
orthogonal-writing-mode-shrink-to-fit.html
multicol-under-vertical-rl-scroll.html
hit-test-in-vertical-rl.html
Within each [=multicol line=] 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 multi-column container are equal.
All column rules in the same multi-column container 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 line
of columns, and the height of each column will be equivalent to the
used height of the multi-column container's content box.
However, [=fragmentation=] or [=spanners=]
can split the content of the [=multi-column container=]
into multiple [=multicol lines=].
If the multi-column container is paginated, the height of each column is
constrained by the page and the content continues in a new line 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, subsequent line of column boxes.
A demonstration of how the spanning element divides the multicol container.
A [=multi-column container=] therefore is a regular [=block container=]
that establishes a new [=independent formatting context=]
whose contents consist of a series of
[=multicol lines=] and multicol spanners.
Each [=multi-column line=] acts as a [=block-level box=]
that establishes a multi-column formatting context
for its [=column boxes=];
and each [=spanner=] acts as a [=block-level box=]
that establishes an [=independent formatting context=]
with its type depending on its 'display' value as usual.
Nested multi-column containers are allowed,
but there may be implementation-specific limits.
multicol-nested-002.xht
multicol-nested-005.xht
multicol-nested-006.html
multicol-nested-007.html
multicol-nested-008.html
multicol-nested-009.html
multicol-nested-010.html
multicol-nested-011.html
multicol-nested-012.html
multicol-nested-013.html
multicol-nested-014.html
multicol-nested-015.html
multicol-nested-016.html
multicol-nested-017.html
multicol-nested-018.html
multicol-nested-019.html
multicol-nested-020.html
multicol-nested-021.html
multicol-nested-022.html
multicol-nested-023.html
multicol-nested-024.html
multicol-nested-025.html
multicol-nested-026.html
multicol-nested-027.html
multicol-nested-028.html
multicol-nested-029.html
multicol-nested-030.html
multicol-nested-031.html
crashtests/nested-as-balanced-legend.html
crashtests/nested-as-nested-balanced-legend.html
crashtests/nested-floated-multicol-with-tall-margin.html
crashtests/nested-multicol-and-float-with-tall-padding-before-float.html
crashtests/nested-multicol-and-float-with-tall-padding.html
crashtests/nested-multicol-fieldset-tall-trailing-border-freeze.html
crashtests/nested-multicol-fieldset-tall-trailing-padding.html
crashtests/nested-multicol-in-svg-foreignobject.html
crashtests/nested-multicol-nested-flex.html
crashtests/nested-multicol-with-float-between.html
crashtests/nested-oof-multicol-with-monolithic-child.html
crashtests/nested-oof-multicol-with-oof-needing-additional-columns.html
crashtests/nested-oof-multicol-with-padding.html
crashtests/nested-with-fragmented-oof-negative-top-offset.html
crashtests/nested-with-multicol-table-caption.html
crashtests/multicol-table-caption-parallel-flow-after-spanner-in-inline.html
crashtests/nested-with-multicol-table-cell.html
crashtests/nested-with-oof-inside-fixed-width.html
crashtests/nested-with-percentage-size-and-oof.html
crashtests/nested-with-tall-padding-and-oof.html
crashtests/nested-with-tall-padding.html
crashtests/oof-in-nested-line-float.html
crashtests/oof-nested-multicol-inside-oof.html
crashtests/relayout-nested-with-oof.html
crashtests/repeated-section-in-nested-table-nested-multicol.html
crashtests/repeated-table-footer-in-caption-nested-multicol.html
nested-balanced-monolithic-multicol-crash.html
nested-balanced-very-tall-content-crash.html
nested-floated-shape-outside-multicol-with-monolithic-child-crash.html
nested-with-overflowing-padding-crash.html
triply-nested-with-fixedpos-in-abspos-crash.html
fixed-in-nested-multicol-with-transform-container.html
fixed-in-nested-multicol-with-viewport-container.html
fixed-in-nested-multicol.html
nested-after-float-clearance.html
nested-at-outer-boundary-as-fieldset.html
nested-at-outer-boundary-as-float.html
nested-at-outer-boundary-as-legend.html
nested-floated-multicol-with-monolithic-child.html
nested-oofs-in-relative-multicol.html
nested-past-fragmentation-line.html
nested-with-too-tall-line.html
oof-nested-in-single-column.html
nested-non-auto-inline-size-offset-top.html
fixedpos-static-pos-with-viewport-cb-001.html
fixedpos-static-pos-with-viewport-cb-002.html
fixedpos-static-pos-with-viewport-cb-003.html
multicol-height-block-child-001.xht
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.
See Accessibility Considerations for more details.
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.
The Inline Size of Columns: the 'column-width' property
Name: column-width
Value: auto | <>
Initial: auto
Applies to: block containers except table wrapper boxes
Inherited: no
Percentages: N/A
Computed value: the keyword ''auto'' or an absolute length
Animation type: by computed value type
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).
Negative values are not allowed.
Used values will be clamped to a minimum of ''1px''.
zero-column-width-computed-style.html
zero-column-width-layout.html
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''.
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 container (assuming horizontal text)
must also be specified.
The Number of Columns: the 'column-count' property
Name: column-count
Value: auto | <>
Initial: auto
Applies to: block containers except table wrapper boxes
Inherited: no
Percentages: N/A
Computed value: specified value
Animation Type: by computed value
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.
The pseudo-algorithm below determines the used values for
'column-count' (N) and 'column-width' (W). There is one other variable
in the pseudo-algorithm: U is the used width of the multi-column container.
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 Box Sizing Module [[CSS3-SIZING]]) is expected to define this.
intrinsic-size-001.html
intrinsic-size-002.html
intrinsic-size-003.html
intrinsic-size-004.html
intrinsic-size-005.html
as-column-flex-item.html
intrinsic-width-change-column-count.html
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 columns,
the UA must floor the column size to a UA-specified value to avoid division by zero.
It is suggested that this floor be 1px or less.
In fragmented contexts such as in [=paged media=],
user agents may perform this calculation on a per-fragment 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.
column-count-used-001.html
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:
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.
multicol-rule-stacking-001.xht
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=]).
multicol-height-001.xht
multicol-nested-column-rule-001.xht
multicol-nested-column-rule-002.html
multicol-nested-column-rule-003.html
multicol-rule-nested-balancing-001.html
multicol-rule-nested-balancing-002.html
multicol-rule-nested-balancing-003.html
multicol-rule-nested-balancing-004.html
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 container=].
For scrollable multicol containers,
note that while the border and background of the [=multicol container=] 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.
multicol-rule-003.xht
multicol-rule-004.xht
multicol-rule-fraction-002.xht
multicol-rule-001.xht
multicol-rule-large-001.xht
multicol-rule-large-002.xht
multicol-count-computed-003.xht
multicol-count-computed-005.xht
broken-column-rule-1.html
multicol-breaking-000.html
multicol-breaking-001.html
multicol-breaking-002.html
multicol-breaking-003.html
multicol-breaking-004.html
multicol-breaking-005.html
multicol-breaking-006.html
multicol-breaking-nobackground-000.html
multicol-breaking-nobackground-001.html
multicol-breaking-nobackground-002.html
multicol-breaking-nobackground-003.html
multicol-breaking-nobackground-004.html
multicol-breaking-nobackground-005.html
Gutters Between Columns: the 'column-gap' property
The 'column-gap' property is defined in [[!CSS3-ALIGN]].
In a [=multi-column formatting context=]
the used value of ''normal'' for the 'column-gap' property is ''1em''.
This ensures columns are readable when the initial values are used.
If there is a column rule between columns,
it will appear in the middle of the gap.
multicol-gap-fraction-001.xht
multicol-gap-fraction-002.html
multicol-gap-large-001.xht
multicol-gap-large-002.xht
multicol-gap-negative-001.xht
multicol-gap-000.xht
multicol-gap-002.xht
multicol-gap-percentage-001.html
multicol-gap-001.xht
multicol-gap-003.xht
multicol-gap-animation-001.html
multicol-gap-animation-002.html
multicol-gap-animation-003.html
The Color of Column Rules: the
'column-rule-color' property
Name: column-rule-color
Value: <>
Initial: currentcolor
Applies to: multicol containers
Inherited: no
Percentages: N/A
Computed value: computed color
Animation type: by computed value type
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.
parsing/column-rule-style-computed.html
parsing/column-rule-style-valid.html
parsing/column-rule-style-invalid.html
The ''border-style/none'' and ''hidden'' values force the computed value of 'column-rule-width' to be ''0''.
The Width Of Column Rules: the 'column-rule-width' property
Name: column-rule-width
Value: <>
Initial: medium
Applies to: multicol containers
Inherited: no
Percentages: N/A
Computed value: absolute length, [=snapped as a border width=]; ''0'' if the column rule style is ''border-style/none'' or ''hidden''
Animation type: by computed value type
This property sets the width of the rule between columns.
Negative values are not allowed.
multicol-rule-fraction-001.xht
multicol-rule-fraction-003.xht
multicol-rule-px-001.xht
multicol-rule-percent-001.xht
subpixel-column-rule-width.tentative.html
parsing/column-rule-width-computed.html
parsing/column-rule-width-invalid.html
parsing/column-rule-width-valid.html
animation/column-rule-width-interpolation.html
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.
multicol-shorthand-001.xht
multicol-rule-shorthand-001.xht
multicol-rule-shorthand-2.xht
multicol-rule-000.xht
multicol-rule-002.xht
multicol-rule-dashed-000.xht
multicol-rule-dotted-000.xht
multicol-rule-double-000.xht
multicol-rule-outset-000.xht
multicol-rule-none-000.xht
multicol-rule-hidden-000.xht
multicol-rule-inset-000.xht
multicol-rule-groove-000.xht
multicol-rule-ridge-000.xht
multicol-rule-solid-000.xht
parsing/column-rule-computed.html
parsing/column-rule-invalid.html
parsing/column-rule-valid.html
parsing/column-rule-shorthand.html
In this example, the [=column rule=] and the [=column gap=] have the same width.
Therefore, they will occupy exactly the same space.
The column rule and column gap occupy the same space.
equal-gap-and-rule.html
multicol-rule-samelength-001.xht
fixed-size-child-with-overflow.html
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'.
Controlling Fragmentation: the 'break-before', 'break-after', 'break-inside' properties
'break-before', 'break-after', and 'break-inside'
are defined in [[!CSS3-BREAK]].
multicol-break-000.xht
multicol-break-001.xht
multicol-br-inside-avoidcolumn-001.xht
moz-multicol3-column-balancing-break-inside-avoid-1.html
Spanning Columns
The 'column-span' property makes it possible for an element to span across several columns.
Spanning An Element Across Columns: the 'column-span' property
Name: column-span
Value: none | all
Initial: none
Applies to: in-flow block-level elements
Inherited: no
Percentages: N/A
Computed value: specified keyword
Animation type: discrete
parsing/column-span-invalid.html
This property describes how many columns an element spans across. Values are:
none
The element does not span multiple columns.
multicol-span-none-001.xht
all
The element forces a column break and is taken [=out of flow=]
to span 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
in the immediately preceding [=multi-column line=] before the element appears,
and any subsequent content flows into a new [=multi-column line=] after the element.
The element establishes an [=independent formatting context=].
Note: Whether the element establishes a new formatting context
does not depend on whether the element is a descendant 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.
multicol-span-000.xht
multicol-span-all-001.xht
multicol-span-all-003.xht
multicol-span-all-block-sibling-003.xht
multicol-span-all-margin-001.xht
multicol-span-all-margin-002.xht
multicol-span-all-margin-003.html
multicol-span-all-margin-bottom-001.xht
multicol-span-all-margin-nested-001.xht
multicol-span-all-margin-nested-002.xht
multicol-span-all-margin-nested-firstchild-001.xht
multicol-span-float-001.xht
multicol-span-float-002.html
multicol-span-float-003.html
inline-block-and-column-span-all.html
multicol-span-all-dynamic-remove-001.html
multicol-span-all-dynamic-add-001.html
multicol-span-all-dynamic-remove-002.html
multicol-span-all-dynamic-add-002.html
multicol-span-all-dynamic-remove-003.html
multicol-span-all-dynamic-add-003.html
multicol-span-all-dynamic-remove-004.html
multicol-span-all-dynamic-add-004.html
multicol-span-all-dynamic-add-005.html
multicol-span-all-dynamic-remove-005.html
multicol-span-all-dynamic-remove-006.html
multicol-span-all-dynamic-add-006.html
multicol-span-all-dynamic-remove-007.html
multicol-span-all-dynamic-add-007.html
multicol-span-all-dynamic-add-008.html
multicol-span-all-dynamic-add-009.html
multicol-span-all-dynamic-add-010.html
multicol-span-all-dynamic-add-011.html
multicol-span-all-dynamic-add-012.html
multicol-span-all-dynamic-add-013.html
multicol-span-all-children-height-001.html
multicol-span-all-children-height-002.html
multicol-span-all-children-height-003.html
multicol-span-all-children-height-004a.html
multicol-span-all-children-height-004b.html
multicol-span-all-children-height-005.html
multicol-span-all-children-height-006.html
multicol-span-all-children-height-007.html
multicol-span-all-children-height-008.html
multicol-span-all-children-height-009.html
multicol-span-all-children-height-010.html
multicol-span-all-children-height-011.html
multicol-span-all-children-height-012.html
multicol-span-all-children-height-013.html
multicol-span-all-004.html
multicol-span-all-005.html
multicol-span-all-006.html
multicol-span-all-007.html
multicol-span-all-008.html
multicol-span-all-009.html
multicol-span-all-010.html
multicol-span-all-011.html
multicol-span-all-012.html
multicol-span-all-013.html
multicol-span-all-014.html
multicol-span-all-015.html
multicol-span-all-016.html
multicol-span-all-017.html
multicol-span-all-018.html
multicol-span-all-019.html
multicol-span-all-rule-001.html
multicol-span-all-button-001.html
multicol-span-all-button-002.html
multicol-span-all-button-003.html
multicol-span-all-fieldset-001.html
multicol-span-all-fieldset-002.html
multicol-span-all-fieldset-003.html
multicol-span-all-restyle-001.html
multicol-span-all-restyle-002.html
multicol-span-all-restyle-003.html
multicol-span-all-restyle-004.html
multicol-span-all-list-item-001.html
multicol-span-all-list-item-002.html
float-with-line-after-spanner.html
parallel-flow-after-spanner-001.html
parallel-flow-after-spanner-002.html
crashtests/margin-and-break-before-child-spanner.html
multicol-width-004.html
An element that spans more than one column is called a multi-column spanning element
and the box it creates is called a multi-column spanner.
The [=containing block=] of the [=spanner=] is the [=multicol container=] itself.
Consequently, in cases where the spanner itself does not establish
a [=containing block=] for [=absolutely positioned boxes=] inside the spanner,
their [=containing block chain=] skips directly to the [=multicol container=]
(skipping any ancestors between the [=spanner=] and the [=multicol container=]).
Although the spanner is taken [=out-of-flow=],
this does not affect the painting order [[!CSS21]] of the spanning element.
In this example, an h2 element has been added to the sample document after the sixth sentence
(i.e., after the words "the leg of a").
This styling applies:
h2 { column-span: all; background: silver }
By setting 'column-span' to ''column-span/all'',
all content that appears before the h2 element
is shown above the h2 element.
The h2 element is set to column-span: all
Note that because the spanner splits the [=multi-column line=],
it also interrupts any [=column rules=]
(which are only drawn between [=columns=] in a [=multi-column line=]).
A spanning element may be lower than the first level of descendants
as long as they are part of the same [=formatting context=],
and there is nothing between the spanning element and [=multicol container=] that establishes a containing block for fixed position descendants.
In this example, the element with ''column-span: all'' is inside an element with ''transform: rotate(90deg)''.
The transform establishes a containing block for fixed position descendents,
therefore a spanner will not be created.
fixed-in-multicol-with-transform-container.html
change-transform-in-nested.html
change-transform-in-second-column.html
change-transform.html
If the fragment before the spanner is empty, nothing special happens;
the top margin/border/padding is above the spanning element, as an empty [=fragment=].
In this example the [=multicol container=] is the article element.
Inside this parent is a paragraph and then a section element.
The section contains an h2 heading set to ''column-span/all''
this spans all three columns while the containing section remains inside the column boxes.
The h2 is the first child of the section.
This means that the margin,
border (shown in red in the diagram)
and padding on this section appear before the spanning h2 as an empty fragment.
The h2 element is set to ''column-span: all'',
the section has a red border and top padding and margin
spanner-fragmentation-000.html
spanner-fragmentation-001.html
spanner-fragmentation-002.html
spanner-fragmentation-003.html
spanner-fragmentation-004.html
spanner-fragmentation-005.html
spanner-fragmentation-006.html
spanner-fragmentation-007.html
spanner-fragmentation-008.html
spanner-fragmentation-009.html
spanner-fragmentation-010.html
spanner-fragmentation-011.html
spanner-fragmentation-012.html
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.
The h2 element is in an overflow column and appears as if column-span none is specified
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.
The h2 element is in the final column and appears as if column-span none is specified
multicol-span-all-002.xht
In fragmented contexts spanning elements are honored in all fragments.
In this example, we are in [=paged media=],
and the first three paragraphs have column breaks after them.
A spanning H2 element appears after the fourth paragraph.
This would appear on the first pageThis would appear on the second page
Spanners are block-level boxes
therefore the margins of two adjacent spanners will collapse with each other.
The margins of two spanners separated only by an absolutely positioned item will collapse with each other,
as absolutely positioned items do not create column boxes.
As column boxes establish a new [=block formatting context=],
margins on elements inside a column box will not collapse with the margin of a spanner.
non-adjacent-spanners-000.html
non-adjacent-spanners-001.html
Spanners establish new [=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.
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 Balancing: the 'column-fill' property
Name: column-fill
Value: auto | balance | balance-all
Initial: balance
Applies to: multicol containers
Inherited: no
Percentages: N/A
Computed value: specified keyword
Animation type: discrete
This property specifies whether content
in a [=multi-column line=] that does not immediately precede a [=spanner=]
is balanced across columns or not.
always-balancing-before-column-span.html
no-balancing-after-column-span.html
The values are:
balance
Balance content equally between columns, as far as possible.
In fragmented contexts, only the last fragment is balanced.
multicol-fill-000.xht
multicol-fill-001.xht
parsing/column-fill-invalid.html
parsing/column-fill-valid.html
parsing/column-fill-computed.html
column-fill-balance-orthog-block-001.html
column-balancing-paged-001-print.html
multicol-fill-balance-001.xht
multicol-fill-balance-002.html
multicol-fill-balance-003.html
multicol-fill-balance-004.html
multicol-fill-balance-005.html
multicol-fill-balance-006.html
multicol-fill-balance-007.html
multicol-fill-balance-008.html
multicol-fill-balance-009.html
multicol-fill-balance-010.html
multicol-fill-balance-011.html
multicol-fill-balance-012.html
multicol-fill-balance-013.html
multicol-fill-balance-014.html
multicol-fill-balance-015.html
multicol-fill-balance-016.html
multicol-fill-balance-018.html
multicol-fill-balance-019.html
multicol-fill-balance-020.html
multicol-fill-balance-021.html
multicol-fill-balance-022.html
multicol-fill-balance-023.html
multicol-fill-balance-024.html
multicol-fill-balance-025.html
multicol-fill-balance-026.html
multicol-fill-balance-027.html
multicol-fill-balance-028.html
multicol-fill-balance-nested-000.html
balance-all
Balance content equally between columns, as far as possible.
In fragmented contexts, all fragments are balanced.
In continuous contexts, this property does not have any effect when there are 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.
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.
Once column height is established, columns are filled sequentially.
In this example, an article starts with an unbreakable figure which sets the column height.
Subsequent content is filled sequentially into the remaining columns:
Column height is established by the figure.
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:
Content visibly overflows and is not clipped to the column box.
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 contexts
and additional column boxes are moved to the next fragment(s) for fragmented media.
multicol-overflow-000.xht
multicol-overflowing-001.xht
overflow-unsplittable-001.html
overflow-unsplittable-002.html
overflow-unsplittable-003.html
Columns that appear outside the multicol container in continuous contexts
are called overflow columns.
Overflow columns can affect the height of the multicol container.
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.
An overflow column is created in the inline direction.
In continuous contexts overflow columns can affect the height of the multicol container.
In this example a column appears in the overflow which has four lines of text.
The multicol container is made tall enough to accommodate this column.
The final column is an overflow column yet is taller than the others.
The container is tall enough for this column.
In fragmented contexts, the overflow content goes into columns in subsequent fragments.
Given the same content as in example 31
and a page box that only has room for five lines of formatted text,
this would appear on the first page:
The first three paragraphs appear on page one.
Assuming column balancing, this would appear on the second page:
The overflow column is moved onto page two.
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:
An overflow column is created in the inline direction.
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:
The first three paragraphs appear on page one.
This would appear on the second page:
The overflow column is moved onto page two.
Due to column balancing, the last paragraph is split across three columns.
Added the text "and there is nothing between the spanning element and [=multicol container=] that establishes a containing block for fixed position descendants." Resolved 9 Mar 2022
Added the text "Out-of-flow descendants of a multi-column container do affect column balancing,
and the block-size of the multi-column container." Resolved 12 May 2021
Added the text, "The margins of two spanners separated only by an absolutely positioned item will collapse with each other,
as absolutely positioned items do not create column boxes." Resolved 12 May 2021
Added the text "The spanner becomes the containing block for absolutely positioned boxes inside the spanner where the spanning element establishes a containing block, otherwise the containing block chain goes to the multicol container.". Resolved 23 Oct 2020
Adding the text "This property specifies whether content
in a multi-column line that does not immediately precede a spanner
is balanced across columns or not." Resolved 29 April 2020
Removed the non-normative text
"However, as described below, setting both the width and number of columns rarely makes sense." Editorial 16 Sep 2019, issue 4291.
Added the paragraph, "Spanners are block-level boxes
therefore the margins of two adjacent spanners will collapse with each other.
As column boxes establish a new [=block formatting context=],
margins on elements inside a column box will not collapse with the margin of a spanner." Resolved 22 Oct 2018, see also the resolution for issue 2582.
Clarified the spec to explain that a spanning element is taken out-of-flow, leaving a forced break. Added the paragraph, "A spanning element is taken out-of-flow, leaving a forced break. This does not affect the painting order of the spanning element." Resolved 28 Feb 2019.
Moved the definition of the 'column-gap' property to [[CSS3-ALIGN]] and added a paragraph detailing the specifics of 'column-gap' in multicol:
"In a multi-column formatting context the used value of normal for the column-gap property is 1em. This ensures columns are readable when the initial values are used. If there is a column rule between columns, it will appear in the middle of the gap." Resolved 4 June 2019.
Removed the at-risk marker from the length-percentage value for 'column-gap'. Resolved 4 June 2019.
Updated the introduction to remove mention of the benefits of multicol over using tables for layout and instead refer to the unique characteristics of multicol. Editorial change referenced in issue 3654.
Changed the sentence added in the pseudo-algorithm section after the 7 Jan 2016 resolution, to refer to columns and not tracks as tracks are not defined in this specification. Resolved 13 March 2019.
Changes and clarifications to the SVG images used in the specification.
Changed syntax to use bracketed range notation to reflect the prose restrictions on negative/non-zero values.
Changed references to paged media to refer to fragmented contexts. Resolved 12 Apr 2018.
Changed a line regarding the column-fill property:
In continuous media, this property does not have any effect in
overflow columns. To:
In continuous media, this property does not have any effect when there are overflow columns.Resolved: 12 Apr 2018
Add a line of text plus an example to show that overflow columns can affect the multicol container height. Resolved: 12 Apr 2018
Replaced the HTML mock-up examples with SVG versions, as the examples were unclear. Issue 1087.
Changed the value of normal for column-gap to be 1em, rather than a UA-specified length with a suggestion of 1em. Resolved: 4 Apr 2018
Clarified that negative values are not allowed for column-width, and that while 0 may be specified, used values will be clamped to a minimum of 1px. Resolved: 14 Mar 2018
Clarified that where there is a spanning element content is automatically balanced across all columns in the immediately preceding column row before the element appears. Resolved: 9 Nov 2017
Added clarification plus an additional example that spanning elements may be lower the first level of descendants, and that in the case of margins, borders and padding on the element containing the spanning, this would be drawn above the spanner. Resolved: 8 Nov 2017
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 track size floor to a required UA-specified value, consistent with the CSS Grid spec. Resolved: 7 Jan 2016
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.
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,
Morten Stenshorne,
Øyvind Stenhaug,
Peter Linss,
Peter-Paul Koch,
Robert O'Callahan,
Robert Stevahn,
Sergey Genkin,
Shelby Moore,
Steve Zilles,
Sylvain Galineau,
Tantek Çelik,
Till Halbach
crashtests/block-in-inline-become-float.html
crashtests/multicol-with-oof-in-multicol-with-oof-in-multicol.html