7.距离.html 532 B

123456789101112131415161718192021222324
  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. #box {
  9. width: 200px;
  10. height: 300px;
  11. background: #f00;
  12. margin-top: 19px;
  13. margin-left: 30px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="box"></div>
  19. <script>
  20. var box = document.getElementById("box");
  21. console.log(box.offsetLeft)
  22. </script>
  23. </body>
  24. </html>