postcss-pxtorem 配置

postcss-pxtorem 用於自動幫助將px轉換成rem,因此在編寫代碼時候,直接按照設計圖px便可javascript

module.exports = {
  plugins: {
    autoprefixer: {},
    'postcss-pxtorem': {
      rootValue: 100, // 根元素字體大小
      // propList: ['width', 'height']
      propList: ['*']
    }
  }
}
相關文章
相關標籤/搜索