Function is_matching_relative_size

Source
pub fn is_matching_relative_size(value: &str) -> bool
Expand description

Returns whether the CSS value is a relative size.

ยงExample

use encre_css::utils::value_matchers::is_matching_relative_size;
assert!(is_matching_relative_size("larger"));
OSZAR »