Answers for "auto scroll bottom css"

CSS
2

scroll start from bottom css

.container {
  display: flex;
  flex-direction: column-reverse;
}
Posted by: Guest on July-13-2021
0

javascript auto scroll on bottom

const scrollToTop = () => {
  const scrollTopButton = document.getElementById('scrollTopButton');

  scrollTopButton.addEventListener('click', () => {
    window.scrollTo(0, document.body.scrollHeight);
  });
};
Posted by: Guest on January-28-2021

Browse Popular Code Answers by Language