본문 바로가기
Research/CSS

CSS_Smooth Scroll 적용하기

by RIEM 2023. 4. 24.

Smooth Scroll

// link
<a href="#services">services</a>
// element
<section id="services"></section>
html {
    scroll-behavior: smooth;
}
.section {
    /* navbar height*/
    scroll-margin-top: 4rem;    
}

댓글