CSS Modules
The CSS Modules project defines CSS Modules as:
A CSS Module is a CSS file in which all class names and animation names are scoped locally by default.
This implementation is however currently immature and has not (as far as I'm aware) been used in a real world situation. Currently only animation and class names are locally scoped and the following work is in progress:
- Inlining
url()
and@import
statements - Creating or integrating with a asset compilation tool tool (Rollup, Webpack, etc)
Usage
Add this crate as a build dependency and as a regular dependency:
[]
= "0.5"
[]
= "0.5"
Create a build script (build.rs
) in the root of your project:
use CssModules;
And then finally, you can include CSS modules:
use include_css_module;
let css = include_css_module!; // relative path to your CSS
let myClass = css; // aliased class name
For more detailed examples, look in the examples/
directory.