css_feature_data 0.0.6-canary.23726265a1

Refreshing CSS!
Documentation

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);
}