CSS Column-Count Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

The ‘column-count’ property describes the ideal number of columns into which the content of the element will be flowed. An integer value sets the ideal number of columns into which the content of the element will be flowed.

Syntax

column-count: [value];

Possible values

  • [integer]
  • auto

Initial Value

Auto

Applies To

Block-level elements

Inherited

No

Media

Visual

Example

body {
  column-count: 2 ;
}


View All CSS Properties