123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>体验rem适配</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- }
-
- .box {
- /* width: 10px; */
- width: 5rem;
- height: 5rem;
- background-color: pink;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <script src="./js/flexible.js"></script>
- </body>
- </html>
|