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