pub fn parse_layout_margin_bottom( input: &str, ) -> Result<LayoutMarginBottom, CssPixelValueParseError<'_>>
Parses a LayoutMarginBottom attribute from a &str
LayoutMarginBottom
&str
assert_eq!(parse_layout_margin_bottom("5px"), Ok(LayoutMarginBottom { inner: PixelValue::px(5.0) }));
Returns an error if input is not a valid CSS value for this property.
input