AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
选择器也可以继承其他CSS文件里面的规则。 [`another.css`](https://github.com/ruanyf/css-modules-demos/blob/master/demo05/components/another.css) ~~~ .className { background-color: blue; } ~~~ [`App.css`](https://github.com/ruanyf/css-modules-demos/blob/master/demo05/components/App.css)可以继承`another.css`里面的规则。 ~~~ .title { composes: className from './another.css'; color: red; } ~~~ 运行这个示例。 ~~~ $ npm run demo05 ~~~ 打开`http://localhost:8080`,会[看到](http://ruanyf.github.io/css-modules-demos/demo05/)蓝色的背景上有一个红色的`h1`。