我正在使用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
:root {
--varA: #1eb3ab;
--varB: #1eb3ab;
--varC: #1eb3ab;
--varD: #1eb3ab;
--varE: #1eb3ab;
}
body {
color: var(--varA) /*works fine */
}
我想在App / styles.css中使用这些变量(或者我很乐意在其他地方定义它们,在这种情况下我该怎么做)在其他容器中使用组件
我试过(用于css-modules)
..
..
<div className={styles.myClass}> Content </div>
..
:root{
--varA: tealish from "containers/App/styles.css"; /* DOESNT WORK */
}
.myClass {
color: var(--varA)
}
.myClass {
color: var(--varA from "containers/App/styles.css") /* DOESNT WORK AS WELL*/
}
最优雅的解决方案是什么?我希望将所有变量放在一个文件/一个地方,并在所有css文件中很好地使用它们
我还在postcss-custom-properties https://github.com/postcss/postcss-custom-properties#variables中看到了variables
。但我不知道如何在我的webpack定义中使用postcss-cssnext
// 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(),
],
答案 0 :(得分:1)
我会推荐postcss-custom-properties“变量”选项。
您在文档中有一个示例
http://cssnext.io/usage/#features
cssnext({
features: {
customProperties: {
variables: {
mainColor: "red",
altColor: "blue",
}
}
}
})
答案 1 :(得分:0)
我通常在postcss-import的帮助下实现这一点,因此每个需要使用“变量”的模块都需要导入部分。
@import 'path/to/variables';
.myClass {
color: var(--colorGray);
}
该方法适用于自定义属性,但也适用于custom property sets。
类似question。