Type Alias FlexAlign

Source
pub type FlexAlign = BoxAlign;
Expand description

A value for the legacy (prefixed) flex-align property.

Aliased Type§

pub enum FlexAlign {
    Start,
    End,
    Center,
    Baseline,
    Stretch,
}

Variants§

§

Start

Items are aligned to the start.

§

End

Items are aligned to the end.

§

Center

Items are centered.

§

Baseline

Items are aligned to the baseline.

§

Stretch

Items are stretched.