属性

当前忽略单个属性的最简单的方法,就是 px 单位使用大写字母。

  1. /* `px` is converted to `rem` */
  2. .convert {
  3. font-size: 16px; // converted to 1rem
  4. }
  5. /* `Px` or `PX` is ignored by `postcss-pxtorem` but still accepted by browsers */
  6. .ignore {
  7. border: 1Px solid; // ignored
  8. border-width: 2PX; // ignored
  9. }

文件

对于头部包含注释 /*postcss-pxtransform disable*/ 的文件,插件不予处理。