如何使用calc()和postCSS成为负值?

时间:2019-06-04 13:45:04

标签: css gulp postcss calc

--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
  })
]))

有什么想法吗?

0 个答案:

没有答案