我正在使用 css-modules 和 postcss-cssnext ,特别是它的 postcss-custom-properties 功能
我也在使用 react-boilerplate ( https://github.com/mxstbr/react-boilerplate/ ),这个非常好的样板带有这些模块
我的文件夹结构是:
Main folder
app
containers
App
styles.css
index.js
HomePage
styles.css
index.js
components
Component1
styles.css
index.js
Component2
styles.css
index.js
应用程序/styles.css
:root {
--varA: #1eb3ab;
--varB: #1eb3ab;
--varC: #1eb3ab;
--varD: #1eb3ab;
--varE: #1eb3ab;
}
body {
color: var(--varA) /*works fine */
}
我想在 App/styles.css 中使用这些变量(或者我很乐意在其他地方定义它们,在这种情况下我该怎么做)在其他容器和组件中
我已经尝试过(用于在 css-modules 中使用)
主页/index.js
..
..
<div className={styles.myClass}> Content </div>
..
HomePage/styles.css -- 方法一
:root{
--varA: tealish from "containers/App/styles.css"; /* DOESNT WORK */
}
.myClass {
color: var(--varA)
}
HomePage/styles.css——方法2
.myClass {
color: var(--varA from "containers/App/styles.css") /* DOESNT WORK AS WELL*/
}
什么是最优雅的解决方案?我想将所有变量放在一个文件/一个地方,并在所有 css 文件中很好地使用它们
我还看到了variables
postcss-custom-properties https://github.com/postcss/postcss-custom-properties#variables。但我不确定如何在使用 postcss-cssnext 的 webpack 定义中使用
webpack.dev.babe.js - 如何将 VARIABLES 选项放在这里
// Process the CSS with PostCSS
postcssPlugins: [
postcssFocus(), // Add a :focus to every :hover
cssnext({ // Allow future CSS features to be used, also auto-prefixes the CSS...
browsers: ['last 5 versions', 'IE > 8'], // ...based on this browser list
// I think I need to add some line here, but not sure what
}),
postcssReporter({ // Posts messages from plugins to the terminal
clearMessages: true,
}),
postcssAnimation(),
],