7.距离.html 658 B

123456789101112131415161718192021222324252627
  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: 220px;
  11. background: #0f0;
  12. /* margin-left: 200px; */
  13. /* margin-top: 150px; */
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="box"></div>
  19. <script>
  20. const box = document.getElementById("box");
  21. console.log(box.offsetHeight)
  22. console.log(box.offsetTop)
  23. console.log(box.offsetWidth)
  24. console.log(box.offsetLeft)
  25. </script>
  26. </body>
  27. </html>