monks/width

The width CSS property sets an element’s width. By default, it sets the width of the content area, but if {{cssxref(“box-sizing”)}} is set to border-box, it sets the width of the border area.

Values

pub const auto_: #(String, String)
  • : The browser will calculate and select a width for the specified element.
pub const fit_content: #(String, String)
  • : Use the available space, but not more than max-content, i.e., min(max-content, max(min-content, stretch)).- fit-content(<length-percentage>) - : Uses the fit-content formula with the available space replaced by the specified argument, i.e., min(max-content, max(min-content, <length-percentage>)).
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const intrinsic: #(String, String)

intrinsic value of width

pub fn length(value: monks_of_style.Length) -> #(String, String)

length value of width

pub const max_content: #(String, String)
  • : The intrinsic preferred width.
pub const min_content: #(String, String)
  • : The intrinsic minimum width.
pub const min_intrinsic: #(String, String)

min-intrinsic value of width

pub fn raw(value: String) -> #(String, String)

Enter a raw string value for width

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const stretch: #(String, String)
  • : Sets the width of the element’s margin box to the width of its containing block. It attempts to make the margin box fill the available space in the containing block, so in a way behaving similar to 100% but applying the resulting size to the margin box rather than the box determined by box-sizing.
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

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

Search Document