Function is_matching_length
Source pub fn is_matching_length(value: &str) -> bool
Expand description
Returns whether the CSS value has the <length>
type.
ยงExample
use encre_css::utils::value_matchers::is_matching_length;
assert!(is_matching_length("300px"));