CSS3 Multi-column Layout
The CSS3 multi-column layout allows easy definition of multiple columns of text - just like in newspapers:Daily Ping
Lorem ipsum
dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.
dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.Property | |||||
---|---|---|---|---|---|
column-count | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit- 11.1 |
column-gap | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit- 11.1 |
column-rule | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit- 11.1 |
column-rule-color | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit 11.1 |
column-rule-style | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit 11.1 |
column-rule-width | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit 11.1 |
column-span | 50.0 4.0 -webkit- | 10.0 | Not supported | 9.0 3.1 -webkit- | 37.0 15.0 -webkit 11.1 |
column-width | 50.0 4.0 -webkit- | 10.0 | 52.0 2.0 -moz- | 9.0 3.1 -webkit- | 37.0 15.0 -webkit 11.1 |
CSS3 Multi-column Properties
In this chapter you will learn about the following multi-column properties:column-count
column-gap
column-rule-style
column-rule-width
column-rule-color
column-rule
column-span
column-width
CSS3 Create Multiple Columns
Thecolumn-count
property specifies the number of columns an element should be divided into.The following example will divide the text in the <div> element into 3 columns:
Example
div {
column-count: 3;}
CSS3 Specify the Gap Between Columns
Thecolumn-gap
property specifies the gap between the columns.The following example specifies a 40 pixels gap between the columns:
Example
div {
column-gap: 40px;}
CSS3 Column Rules
Thecolumn-rule-style
property specifies the style of the rule between columns:Example
div {
column-rule-style: solid;}
column-rule-width
property specifies the width of the rule between columns:Example
div {
column-rule-width: 1px;}
column-rule-color
property specifies the color of the rule between columns:Example
div {
column-rule-color: lightblue;}
column-rule
property is a shorthand property for setting all the column-rule-* properties above. The following example sets the width, style, and color of the rule between columns:
Example
div {
column-rule: 1px solid lightblue;}
Specify How Many Columns an Element Should Span
Thecolumn-span
property specifies how many columns an element should span across.The following example specifies that the <h2> element should span across all columns:
Example
h2 {
column-span: all;}
Specify The Column Width
Thecolumn-width
property specifies a suggested, optimal width for the columns.The following example specifies that the suggested, optimal width for the columns should be 100px:
Example
div {
column-width: 100px;}
CSS3 Multi-columns Properties
The following table lists all the multi-columns properties:Property | Description |
---|---|
column-count | Specifies the number of columns an element should be divided into |
column-fill | Specifies how to fill columns |
column-gap | Specifies the gap between the columns |
column-rule | A shorthand property for setting all the column-rule-* properties |
column-rule-color | Specifies the color of the rule between columns |
column-rule-style | Specifies the style of the rule between columns |
column-rule-width | Specifies the width of the rule between columns |
column-span | Specifies how many columns an element should span across |
column-width | Specifies a suggested, optimal width for the columns |
columns | A shorthand property for setting column-width and column-count |