四、 Class 的组合
最后更新于:2022-04-01 23:31:05
在 CSS Modules 中,一个选择器可以继承另一个选择器的规则,这称为"组合"(["composition"](https://github.com/css-modules/css-modules#composition))。
在[`App.css`](https://github.com/ruanyf/css-modules-demos/blob/master/demo04/components/App.css)中,让`.title`继承`.className` 。
~~~
.className {
background-color: blue;
}
.title {
composes: className;
color: red;
}
~~~
[`App.js`](https://github.com/ruanyf/css-modules-demos/blob/master/demo04/components/App.js)不用修改。
~~~
import React from 'react';
import style from './App.css';
export default () => {
return (
';