1.移动端.html 686 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0,user-scaleble=no">
  6. <title>Document</title>
  7. <style>
  8. /* 根元素16px 最小12px */
  9. #box {
  10. /* 根据根元素字体大小适配 */
  11. width: 3rem;
  12. height: 3rem;
  13. background: #00f;
  14. font-size: 20px;
  15. }
  16. p {
  17. /* em根据父元素字体大小适配 */
  18. font-size: 2em;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="box">
  24. <p>你好</p>
  25. </div>
  26. <script src="./rem封装.js"></script>
  27. </body>
  28. </html>