Type Alias style::values::computed::length::LengthOrAuto

source ·
pub type LengthOrAuto = GenericLengthPercentageOrAuto<Length>;
Expand description

Either a computed <length> or the auto keyword.

Aliased Type§

enum LengthOrAuto {
    LengthPercentage(CSSPixelLength),
    Auto,
}

Variants§

§

LengthPercentage(CSSPixelLength)

§

Auto