Esta tradução está incompleta. Ajude atraduzir este artigo.
A propriedade somente de leitura HTMLElement.offsetParent
retorna uma referência ao objeto ao qual está contido(mais próximo na hierarquia do conteúdo) posicionado contendo o elemento. Caso o elemento não esteja posicionado, mais próximo a célula da tabela ou do elemento raiz (nos padrões do modo de conformidade do html; no modo quirks de redenrização) é o
offsetParent
. quando o elemento está definido style.display
para "none", offsetParent
retorna null. A propriedade offsetParent
é útil devido a offsetTop
e offsetLeft
serem relativos ao seu preenchimento da borda.
parentObj = element.offsetParent;
- parentObj é uma referência de objeto ao elemento no qual o elemento corrente é offset.
Especificação
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'offsetParent' in that specification. |
Working Draft |
Compatibilidade do Navegador
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | ? | ? | ? | ? |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | ? | ? | ? | ? | ? | (Yes) |
In compliance with the specification, this property will return null
on Webkit if the element is hidden (the style.display
of this element or any ancestor is "none"
) or if the style.position
of the element itself is set to "fixed"
.
This property will return null
on Internet Explorer (9) if the style.position
of the element itself is set to "fixed"
. (Having display:none
does not affect this browser.)