1. PostCSS #

2. 文档 #

3. 类型 #

4.AST节点 #

5.操作方法 #

5.1 遍历 #

root.walkDecls(decl => {
    decl.prop = decl.prop.split('').reverse().join('');
});

5.2 处理 #

5.3 postcss plugin #

export default postcss.plugin('postcss-plugin-name', function (opts) {
  opts = opts || {};
  return function (root, result) {
    // 处理逻辑
  };
});

5.4 直接调用postcss命名空间下的方法 #