您的位置:首页技术文章
文章详情页

css - 关于offsetLeft和offsetTop

【字号: 日期:2023-01-15 09:22:10浏览:28作者:猪猪

问题描述

offsetLeft不是当前元素的左外边框到包含元素的左内边框之间的像素距离吗?为什么多出了8px

<!DOCTYPE html><html> <head><meta charset='utf-8'><title>test2</title><style media='screen'> .cc{padding: 50px 30px; } .fc{background-color: blue;width:300px;height: 200px; }</style> </head> <body><p class='cc'> <p > </p></p> </body> <script type='text/javascript'>var fc = document.querySelector(’.fc’);console.log(fc.offsetLeft+’:’+fc.offsetTop); </script></html>

css - 关于offsetLeft和offsetTop

问题解答

回答1:

offsetLeft 和 offsetTop 返回的是相对于 offsetParent 元素的距离,而 offsetParent 指的是一个元素最近的父级定位元素,如果没有定位元素就是文档根节点。

你现在输出的值加上 body 本身有 8px 的 margin,其实是没错的。你可以加个 body { margin:0 } 或者给父级元素加上定位,输出就是你期望的数了。

回答2:

默认有8px的margin。使用*{margin:0;}清除默认样式。

标签: CSS
相关文章: