Type Alias style::values::computed::length::NonNegativeLengthOrAuto

source ·
pub type NonNegativeLengthOrAuto = GenericLengthPercentageOrAuto<NonNegativeLength>;
Expand description

Either a non-negative <length> or the auto keyword.

Aliased Type§

enum NonNegativeLengthOrAuto {
    LengthPercentage(NonNegative<CSSPixelLength>),
    Auto,
}

Variants§

§

LengthPercentage(NonNegative<CSSPixelLength>)

§

Auto