less 文件 媒体查询 循环

@charset "utf-8";


@psdwidth: 1024;
@basesize: 100;
@bt: 100rem;
@fit: 320px, 360px, 375px, 384px, 400px, 414px, 424px, 450px, 480px, 540px, 640px, 720px, 750px, 1024px, 1920px;
.rtrt(@index) when (@index<=length(@fit)) {
  @media (min-width: extract(@fit,@index)) {
    html {
      font-size: extract(@fit,@index)/@psdwidth*@basesize;
    }
  }
  .rtrt(@index+1);
}


.rtrt(1);


html, body {
  width: 100%;
  height: 100%;
}

猜你喜欢

转载自blog.csdn.net/weixin_37806077/article/details/80731875
今日推荐