style::values::computed::length

Type Alias 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