monks/min_width

The min-width CSS property sets the minimum width of an element. It prevents the used value of the {{cssxref(“width”)}} property from becoming smaller than the value specified for min-width.

Values

pub const auto_: #(String, String)
  • : The default value. The source of the automatic value for the specified element depends on its display value. For block boxes, inline boxes, inline blocks, and all table layout boxes auto resolves to 0. For flex items and grid items, the minimum width value is either the specified suggested size, such as the value of the width property, the transferred size, calculated if the element has an aspect-ratio set and the height is a definite size, otherwise, the min-content size is used. If the flex or grid item is a {{glossary(“scroll container”)}}, or if a grid item spans more than one flexible column track, the automatic minimum size is 0.
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, argument)).
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const intrinsic: #(String, String)

intrinsic value of min-width

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

length value of min-width

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

min-intrinsic value of min-width

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

Enter a raw string value for min-width

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const stretch: #(String, String)
  • : Limits the minimum 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. > [!NOTE] > To check aliases used by browsers for the stretch value and its implementation status, see the Browser compatibility section.
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

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

Search Document