HTML DOM 元素 offsetParent 属性
描述
The offsetParent
属性返回最近的祖先,其位置属性不为 static。
The offsetParent
属性如果元素不可见(display="none"),则返回 null
。
教程
The offsetParent
所有块级元素都相对于偏移父元素报告偏移量
- offsetTop
- offsetLeft
- offsetWidth
- offsetHeight
偏移父元素是最近的祖先,其位置属性不为 static。
如果不存在偏移父元素,则偏移父元素为文档正文。
另请参阅
语法
element.offsetParent
返回值
类型 | 描述 |
节点 | 最近的定位祖先。 |
浏览器支持
element.offsetParent
在所有浏览器中均受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |