Expand description
CSS Feature Data
This crate provides comprehensive data about CSS features and their browser support, based on the web-features project.
§Example
use css_feature_data::CSSFeature;
if let Some(data) = CSSFeature::by_property_name("flex-wrap") {
println!("flex-wrap status: {:?}", data.baseline_status);
println!("Chrome support: {:?}", data.browser_support.chrome);
}