环境
- win10
- vscode
- vue2.x
步骤
- 安装
easy less
插件 - src下新建css文件夹,创建
common.less
文件,这里将页面划分为10等份
后写入手机常见的尺寸(320px、360px、375px、384px、400px、414px、424px、480px、540px、720px、750px)并为其设置根元素大小,这里假设设计稿的宽度为830px,后面的计算参见rem计算公式,内容如下:
html {
font-size: 83px;
}
@no:10;
// 320
@media screen and (min-width:320px){
html{
font-size:(320px / @no);
}
}
// 360
@media screen and (min-width:360px){
html{
font-size:(360px / @no);
}
}
// 375
@media screen and (min-width:375px){
html{
font-size:(375px / @no);
}
}
// 384
@media screen and (min-width:<