CSS Column-Span Property
CSS 1 |
CSS 2 |
CSS 3 |
|
|
|
|
Description
The ‘column-span’ property makes it possible for an element to span across several columns.
Syntax
column-span: [value];
Possible values
- 1
- all
Initial Value
1
Applies To
static, non-floating elements
Inherited
No
Media
Visual
Example
h2 {
column-span: all;
}
Loading Twitter