Current section
Files
Jump to
Current section
Files
src/monks/column_width.gleam
//// The **`column-width`** [CSS](/en-US/docs/Web/CSS) property sets the ideal column width in a multi-column layout. The container will have as many columns as can fit without any of them having a width less than the `column-width` value. If the width of the container is narrower than the specified value, the single column's width will be smaller than the declared column width.
////
//// This property can help you create responsive designs that fit different screen sizes. Especially in the presence of the {{cssxref("column-count")}} property (which has precedence), you must specify all related length values to achieve an exact column width. In horizontal text these are {{cssxref('width')}}, `column-width`, {{cssxref('column-gap')}}, and {{cssxref('column-rule-width')}}.
////
import monks_of_style.{length_to_string, type Length}
/// - : The width of the column is determined by other CSS properties, such as {{cssxref("column-count")}}.
pub const auto_ = #("column-width", "auto")
pub const initial = #("column-width", "initial")
pub const inherit = #("column-width", "inherit")
pub const unset = #("column-width", "unset")
pub const revert = #("column-width", "revert")
pub const revert_layer = #("column-width", "revert_layer")
/// length value of column-width
pub fn length(value: Length) -> #(String, String) {
#("column-width", length_to_string(value))
}
/// Enter a raw string value for column-width
pub fn raw(value: String) -> #(String, String) {
#("column-width", value)
}
/// Enter a variable name to be used for column-width.
/// It will be wrapped in `var()` and have `--` prepended.
pub fn var(variable: String) -> #(String, String) {
#("column-width", "var(--" <> variable <> ")")
}