pub type SimpleShadow = SimpleShadow<Color, Length, NonNegativeLength>;Expand description
A computed value for the drop-shadow() filter.
Aliased Type§
#[repr(C)]pub struct SimpleShadow {
pub color: GenericColor<Percentage>,
pub horizontal: CSSPixelLength,
pub vertical: CSSPixelLength,
pub blur: NonNegative<CSSPixelLength>,
}Fields§
§color: GenericColor<Percentage>Color.
horizontal: CSSPixelLengthHorizontal radius.
vertical: CSSPixelLengthVertical radius.
blur: NonNegative<CSSPixelLength>Blur radius.