HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

column-fill

Description

The column-fill property for CSS describes how content is balanced when it is separated into columns.

Syntax

CSS

column-fill: value;

JS

object.style.columnFill = "value";

Values

<'column-fill'> = auto | balance | balance-all
auto

Fill the columns sequentially.

balance

Balance the content equally between columns. In fragmented contexts, only the last fragment is balanced.

balance-all

Balance the content equally between columns. In fragmented contexts, all fragments are balanced.

Initial

balance

Examples

1 · auto

2 · balance

3 · balance-all

4 · JS