123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box {
- width: 200px;
- height: 220px;
- background: #0f0;
- /* margin-left: 200px; */
- /* margin-top: 150px; */
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- const box = document.getElementById("box");
- console.log(box.offsetHeight)
- console.log(box.offsetTop)
- console.log(box.offsetWidth)
- console.log(box.offsetLeft)
- </script>
- </body>
- </html>
|