CSS Column-Break-After Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

Use these properties to tell the browser where to break the content within columns.  In other words, the browser needs to know there to move content into a new column.  These properties specify when and where to move content to a the next column over.

Syntax

column-break-after: [value];

Possible values

  • auto
  • always
  • avoid

Initial Value

Auto

Applies To

Block-level elements

Inherited

No

Media

Visual

Example

h1 {
  column-break-after: avoid ;
}


View All CSS Properties