<button class="btn">버튼</button>

<div class="section">나 여깄지롱!</div>
.section {
  height: 100vh;
  margin-top: 1000px;
  background: royalblue;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}
// jquery
$('.btn').click(function () {
  const scrollTop = $('.section').offset().top;
  $('html, body').animate({scrollTop: scrollTop}, 500);
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js