snaag / TIL

https://github.com/snaag/todo3/issues
3 stars 0 forks source link

22-03-13-SUN #4

Open snaag opened 2 years ago

snaag commented 2 years ago
snaag commented 2 years ago

scrollTop, scrollHeight, clientHeight

image
snaag commented 2 years ago

scrollTop = scrollHeight - clientHeight

image
const ul = document.querySelector('#log');
// ...
const li = document.createElement('li');
li.innerText = text;
ul.appendChild(li);

const { scrollHeight, clientHeight } = ul; // ⭐️
ul.scrollTop = scrollHeight - clientHeight; // ⭐️