美文网首页
less 编译适配移动端页面示例

less 编译适配移动端页面示例

作者: 追逐时光的光光 | 来源:发表于2018-06-07 15:30 被阅读0次

    以下是根据三种宽度生成三种div的宽度

    @base360: 360px;

    @base375: 375px;

    @base412: 412px;

    @media screen and (max-width: 320px) and (min-width: 359px) {

      @baseFont: @base360/@base375;

      div { width: @baseFont; }

    }

    @media screen and (max-width: 360px) and (min-width: 375px) {

      @baseFont: @base412/@base375;

      div { width: @baseFont; }

    }

    @media screen and (max-width: 375px) and (min-width: 412px) {

      @baseFont: @base412/@base375;

      div { width: @baseFont; }

    }

    相关文章

      网友评论

          本文标题:less 编译适配移动端页面示例

          本文链接:https://www.haomeiwen.com/subject/kiugsftx.html