7.距离.html 727 B

1234567891011121314151617181920212223242526272829
  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. margin-top: 150px;
  12. margin-left: 400px;
  13. background: aqua;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="box"></div>
  19. <script>
  20. let box = document.getElementById("box");
  21. // console.log(box.clientWidth);
  22. // console.log(box.clientHeight);
  23. console.log(box.offsetWidth)
  24. console.log(box.offsetHeight)
  25. console.log(box.offsetLeft)
  26. console.log(box.offsetTop)
  27. </script>
  28. </body>
  29. </html>