en.javascript.info/2-ui/1-document/09-size-and-scroll/1-get-scroll-height-bottom/task.md
Ilya Kantor 2ffe7c4635 minor
2019-08-05 17:37:44 +03:00

11 lines
383 B
Markdown

importance: 5
---
# What's the scroll from the bottom?
The `elem.scrollTop` property is the size of the scrolled out part from the top. How to get the size from the bottom scroll (let's call it `scrollBottom`)?
Write the code that works for an arbitrary `elem`.
P.S. Please check your code: if there's no scroll or the element is fully scrolled down, then it should return `0`.