其他分享
首页 > 其他分享> > Vant中使用rem

Vant中使用rem

作者:互联网

Vant 中的样式默认使用 px 作为单位,使用 rem 单位,按照以下步骤:

一、使用 lib-flexible 动态设置 REM 基准值(html 标签的字体大小)
1、安装

# yarn add amfe-flexible
npm i amfe-flexible

2、然后在 main.js 中加载执行该模块

import 'amfe-flexible'

二、使用 postcss-pxtorem 将 px 转为 rem
1、安装

# yarn add -D postcss-pxtorem
# -D 是 --save-dev 的简写
npm install postcss-pxtorem -D

2、然后在项目根目录中创建 .postcssrc.js 文件

module.exports = {
  plugins: {
    'autoprefixer': {
      browsers: ['Android >= 4.0', 'iOS >= 8']
    },
    'postcss-pxtorem': {
      rootValue: 37.5,
      propList: ['*']
    }
  }
}

3、配置完,重新启动服务

最后测试:刷新浏览器页面,审查元素的样式查看是否已将 px 转换为 rem。

需要注意的是:

<div style="width: 200px;"></div>

标签:Vant,px,rem,使用,flexible,postcss,pxtorem,amfe
来源: https://blog.csdn.net/weixin_45818024/article/details/110005976