Type Alias lightningcss::properties::border::BorderBlock

source ·
pub type BorderBlock = GenericBorder<LineStyle, 8>;
Expand description

A value for the border-block shorthand property.

Aliased Type§

struct BorderBlock {
    pub width: BorderSideWidth,
    pub style: LineStyle,
    pub color: CssColor,
}

Fields§

§width: BorderSideWidth

The width of the border.

§style: LineStyle

The border style.

§color: CssColor

The border color.