[][src]Function azul_css_parser::parse_style_border_bottom_width

pub fn parse_style_border_bottom_width<'a>(
    input: &'a str
) -> Result<StyleBorderBottomWidth, PixelParseError<'a>>

Parses a StyleBorderBottomWidth attribute from a &str

Example

assert_eq!(parse_style_border_bottom_width("5px"), Ok(StyleBorderBottomWidth(PixelValue::px(5.0))));