<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);
});
This Pen doesn't use any external CSS resources.