--space-unit: 1em;
--space-xl: calc(3.25 * var(--space-unit));
此calc(-1 * var(--space-xl));
应该是负值...。但是 -1 会被忽略!
输出为3.25em。
这是我的大礼包设置:
.pipe($.postcss([
$.stylelint(),
$.autoprefixer(),
$.cssnano({
discardComments: {
removeAll: true
},
discardDuplicates: true,
discardEmpty: true,
minifyFontValues: true,
minifySelectors: true
}),
$.postcssCustomProperties(), // IE 11
$.postcssCalc(), // IE 11
$.postcssReporter({
clearReportedMessages: true
})
]))
有什么想法吗?