rem原理 - 1

rem响应式

  html{
    font-size: calc(100vw/750);//1rem=1px
  }
  • 举例
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>

    <style>
        @media screen and (max-width: 768px) {
            html {
                font-size: 50px;
            }

            body {
                background-color: #FFFF00;
            }
        }

        /* 小型设备(平板电脑,768px 起) */
        @media screen and (min-width: 768px) and (max-width: 992px) {
            html {
                /*font-size: 75px;*/
                font-size: 77.42px; /*(100/992*768) = 77.4193px*/
            }

            body {
                background-color: #6633FF;
            }
        }

        /*中型设备(台式电脑,992px 起)*/
        @media screen and (min-width: 992px) and (max-width: 1200px) {
            html {
                font-size: 100px;
            }

            body {
                background-color: #00FF66;
            }
        }

        /*大型设备(大台式电脑,1200px 起)*/
        @media screen and (min-width: 1200px) {
            html {
                /*font-size: 150px;*/
                font-size: 121px; /*100/992*1200*/
            }

            body {
                background-color: #FF6699;
            }
        }

        .fon1 {
            font-size: 0.16rem;
            width: 1rem;
            height: 1rem;
            background-color: palevioletred;
        }

        body {
            font-size: 14px;
        }
    </style>
</head>
<body>

<div class="fon1">我是字体一</div>
<div class="fon2">我是字体二</div>
<div class="fon3">我是字体三</div>
<div class="fon4">我是字体四</div>
<div class="fon4">注意事项

    <pre class="fon1">
        rem适配方案不好维护,设备会更新,设计稿尺寸会发生改变 预设基准值
        适配主流设备十几种
    </pre>

</div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值