04-rem适配.html 992 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>rem适配</title>
  8. <style>
  9. /* 视口宽度320px, 根字号为32px */
  10. @media (width: 320px) {
  11. html {
  12. font-size: 32px;
  13. }
  14. }
  15. /* 视口宽度375px, 根字号为37.5px */
  16. @media (width: 375px) {
  17. html {
  18. font-size: 37.5px;
  19. }
  20. }
  21. /* 视口宽度414px, 根字号为41.4px */
  22. @media (width: 414px) {
  23. html {
  24. font-size: 41.4px;
  25. }
  26. }
  27. * {
  28. margin: 0;
  29. padding: 0;
  30. }
  31. .box {
  32. width: 5rem;
  33. height: 5rem;
  34. background-color: pink;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="box"></div>
  40. </body>
  41. </html>