CSS property: -webkit-column-break-before

Description

Determines whether a column break can and should occur before an element in a multicolumn flow layout.

Syntax

-webkit-column-break-before: <policy>;

Values

<policy>

The column break policy.

alwaysA column break is always inserted before the element.
auto (by default)A right column break is inserted before the element where appropriate.
avoidColumn breaks are avoided before the element.
leftA left column break is inserted before the element.
rightA right column break is inserted before the element.

Versions