column-span CSS property makes it possible for an element to span across all columns when its value is set to all .

/* Keyword values */
column-span: none;
column-span: all;
/* Global values */
column-span: inherit;
column-span: initial;
column-span: unset;
					

An element that spans more than one column is called a spanning element .

句法

column-span property is specified as one of the keyword values listed below.

none

The element does not span multiple columns.

all

The element spans across all columns. 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 block formatting context.

形式定义

初始值 none
适用于 in-flow block-level elements
继承 no
计算值 如指定
动画类型 discrete

形式句法

none | all
					

范例

Making a heading span columns

In this example, the heading is made to span across all the columns of the article.

HTML

<article>
  <h2>Header spanning all of the columns</h2>
  <p>
     The h2 should span all the columns. The rest
     of the text should be distributed among the columns.
  </p>
  <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p>
  <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p>
  <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p>
  <p>This is a bunch of text split into three columns using the CSS `columns` property. The text is equally distributed over the columns.</p>
</article>
					

CSS

article {
  columns: 3;
}
h2 {
  column-span: all;
}
					

结果

规范

规范 状态 注释
CSS Multi-column Layout Module
The definition of 'column-span' in that specification.
工作草案 初始定义。

浏览器兼容性

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
column-span Chrome 完整支持 50 Edge 完整支持 12 Firefox 完整支持 71
完整支持 71
完整支持 65 Disabled
Disabled ). To change preferences in Firefox, visit
IE 完整支持 10 Opera 完整支持 11.1 Safari 完整支持 9 WebView Android 完整支持 50 Chrome Android 完整支持 50 Firefox Android 完整支持 65 Disabled
完整支持 65 Disabled
Disabled ). To change preferences in Firefox, visit
Opera Android 完整支持 11.1 Safari iOS 完整支持 9 Samsung Internet Android 完整支持 5.0

图例

完整支持

完整支持

用户必须明确启用此特征。

用户必须明确启用此特征。

要求使用供应商前缀或不同名称。

要求使用供应商前缀或不同名称。

另请参阅

元数据

  • 最后修改: