Style columnFill Property

Example

Specify how to fill columns:

document.getElementById("myDIV").style.columnFill = "balance";
Try it Yourself »

Description

The columnFill property specifies how to fill columns, balanced or not.


Browser Support

Property
columnFill 50.0 10.0 52.0 10.0 37.0

Syntax

Return the columnFill property:

object.style.columnFill

Set the columnFill property:

object.style.columnFill = "balance|auto|initial|inherit"

Property Values

Value Description
balance Default value. Columns are balanced. Browsers should minimize the variation in column length
auto Columns are filled sequentially, and they will have different lengths
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

Technical Details

Default Value: balance
Return Value: A String, representing the column-fill property of an element
CSS Version CSS3

Related Pages

CSS3 tutorial: CSS3 Multiple Columns

CSS reference: column-fill property


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.