- clientHeight - visible content
- offsetHeight - visible content + scrollbar
- scrollHeight - all content (including overflown part)
- element.offsetTop
- element.parentElement or element.parentNode
- element.nextSibling or element.nextElementSibling
- element.previousSibling or element.previousElementSibling
- innerHTML
- innerText
- textContent
NOTE:
textContent
returns the text content of all elements, whileinnerText
returns the content of all elements, except for <script> and <style> elements.innerText
will not return the text of elements that are hidden with CSS (textContent
will).
- static
- relative
- absolute
- fixed
- sticky