<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>前端开发单位rem</title>

  <style>
    *{
      padding: 0;
      margin: 0;

    }
    html{
      font-size: 15px;
    }
    .father{
      font-size: 12px;

    }
    .son{
      width: 10rem;
      height: 10rem;
      background: blue;
    }

  </style>
</head>
<body>
<div class="father">
  <div class="son"></div>
</div>
</body>
</html>

什么是rem?

前端开发常用单位rem

效果图
前端开发常用单位rem

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-01
  • 2021-12-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-02-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案