CSS Trick 003 <a href="#요기요"> 문서 내 요소로 이동

Alice Kim·2021년 3월 16일
0

CSS Trick

목록 보기
3/5
post-thumbnail

❓ 문서의 최상단으로 한번에 이동

<a href="#top"> or <a href="#">


❓ 문서 내 다른 요소로 바로 이동

❗ id 활용

<p>
    <a href="#Section_further_down">Chapter 2로 이동</a>
</p>
...
<!-- 위 링크가 향할 제목 -->
<h2 id="Section_further_down">Chapter 2</h2>

✔문서 내 요소로 이동될 때 smooth하게 동작하도록 부모요소에 scroll-behavior:smooth 선언하기

profile
If you don't build your dream, someone will hire you to help build theirs.

0개의 댓글