2.获取元素宽度.html 549 B

12345678910111213141516171819202122232425
  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">
  6. <title>Document</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. .box {
  13. width: 400px;
  14. height: 300px;
  15. margin-top: 20px;
  16. margin-left: 40px;
  17. background: #00f;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box"></div>
  23. <script src="../js/2.获取元素宽度.js"></script>
  24. </body>
  25. </html>