강의

멘토링

커뮤니티

Inflearn Community Q&A

xoqhal5367's profile image
xoqhal5367

asked

Introduction to HTML&CSS Web Development for Beginners

Image & Multimedia Tags - audio, video, a tags

a 태그 이용해 이동

Written on

·

406

0

a 태그를 이용해서 id target으로 이동하는 방법에 대해 알려주셨는데요! 같은 내용을 클래스에 적용할 수는 없는 건가용?

HTML/CSS

Answer 1

0

gymcoding님의 프로필 이미지
gymcoding
Instructor

안녕하세요 :)

a태그에 id 이동은 a태그가 갖고 있는 스펙입니다. mdn 참고

class로 사용하시려면 해당 class를 Web API함께 사용하여 구현은 할 수 있습니다.

document.querySelector('.clasName').addEventListener('click', () => {
  window.scrollTo({top:0, left:0, behavior:'auto'});
})

 

xoqhal5367's profile image
xoqhal5367

asked

Ask a question