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. - always - A column break is always inserted before the element. - auto (by default) - A right column break is inserted before the element where appropriate. - avoid - Column breaks are avoided before the element. - left - A left column break is inserted before the element. - right - A right column break is inserted before the element.