Enum tailwind_css::TailwindWidth
source · [−]pub enum TailwindWidth {
Min,
Max,
Fit,
Full,
Auto,
Screen,
Length(Length),
Percent(usize, usize),
}
Expand description
Min-Width
Utilities for setting the minimum width of an element.
Class | Properties |
---|---|
min-w-0 | min-width: 0px; |
min-w-full | min-width: 100%; |
min-w-min | min-width: min-content; |
min-w-max | min-width: max-content; |
min-w-fit | min-width: fit-content; |
Variants
Min
Max
Fit
Full
Auto
Screen
Length(Length)
Percent(usize, usize)
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TailwindWidth
impl Send for TailwindWidth
impl Sync for TailwindWidth
impl Unpin for TailwindWidth
impl UnwindSafe for TailwindWidth
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
Mutably borrows from an owned value. Read more
Convert into T with values clamped to the color defined bounds Read more
Convert into T. The resulting color might be invalid in its color space Read more
Convert into T, returning ok if the color is inside of its defined
range, otherwise an OutOfBounds
error is returned which contains
the unclamped color. Read more