monks/column_fill

The column-fill CSS property controls how an element’s contents are balanced when broken into columns.

Values

pub const auto_: #(String, String)
  • : Columns are filled sequentially. Content takes up only the room it needs, possibly resulting in some columns remaining empty.
pub const balance: #(String, String)
  • : Content is equally divided between columns. In fragmented contexts, such as paged media, only the last fragment is balanced. Therefore in paged media, only the last page would be balanced.The specification defines a balance-all value, in which content is equally divided between columns in fragmented contexts, such as paged media. This value is not yet supported in any browser.
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub fn raw(value: String) -> #(String, String)

Enter a raw string value for column-fill

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

Enter a variable name to be used for column-fill. It will be wrapped in var() and have -- prepended.

Search Document