01-体验rem适配.html 557 B

1234567891011121314151617181920212223242526272829
  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. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .box {
  14. width: 5rem;
  15. height: 5rem;
  16. background-color: pink;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="box"></div>
  22. <script src="./js/flexible.js"></script>
  23. </body>
  24. </html>